[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [HTCondor-users] job attribute query with condor_q



I submit the file and then I noticed I can't query for that
particular attribute.

condor_q -constraint 'color==blue'

I can see the color by doing condor_q -l | grep -i color. What am I
supposed to do?

condor_q -constraint 'color == "blue"'

If you don't quote "blue", HTCondor will interpret it as an attribute reference. So your submit file should have

+color = "blue"

in it instead.

- ToddM