Commit f62858a
authored
[rqd] Fix typo that was causing rqconstants.RQD_USE_ALL_HOST_ENV_VARS to never get overriden by rqd.conf (#1754)
**Link the Issue(s) this Pull Request is related to.**
N/A
**Summarize your change.**
After a healthy amount of head-banging I noticed that the value of
`rqconstants.RQD_USE_ALL_HOST_ENV_VARS` was always `False` regardless of
the overrides I had in my `rqd.conf`.
It appears the variable `rqconstants.RQD_USE_HOST_ENV_VARS` (never used)
was being updated instead of `rqconstants.RQD_USE_ALL_HOST_ENV_VARS`.
`rqconstants.RQD_USE_ALL_HOST_ENV_VARS` is only ever used once
throughout the codebase, in rqd/rqcore.py, so this change should be
safe.
https://github.com/AcademySoftwareFoundation/OpenCue/blob/9b3e02abb3898ef77201d6d705ed18b4f85d5143/rqd/rqd/rqcore.py#L7951 parent 9b3e02a commit f62858a
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
228 | | - | |
| 228 | + | |
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
| |||
0 commit comments