Skip to content

Commit

Permalink
Fix the syntax for the Release specification
Browse files Browse the repository at this point in the history
  • Loading branch information
jonwedell committed Jun 7, 2022
1 parent c7a60b8 commit a43c86d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ to run your job, you can do that using the `-const` argument to `condor_status`.

* Check which machines are on release 2022.22:

* `condor_status -const '(Target.Release == "2022.22")'`
* `condor_status -const '(Release == 2022.22)'`
* Check which machines have at least 100 CPUs
* `condor_status -const '(cpus > 100)'`

Expand Down Expand Up @@ -423,7 +423,7 @@ that in order to run your job the machine must be able to provide the specified
resources.

```
requirements = ((Target.Release == "2022.22") || (Target.Release == "2022.21"))
requirements = ((Target.Release == 2022.22) || (Target.Release == 2022.21))
+Production = True
```

Expand Down Expand Up @@ -598,7 +598,7 @@ If you want to check a given requirement against the pool to see which machines
to run your job, you can do that using the `-const` argument to `condor_status`. Here is an example
to check which machines are on release 2022.22:

`condor_status -const '(Target.Release == "2022.22")'`
`condor_status -const '(Release == 2022.22)'`


### Submitting a job
Expand Down

0 comments on commit a43c86d

Please sign in to comment.