We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f8164 commit 2c97645Copy full SHA for 2c97645
osg_configure/modules/ce_attributes.py
@@ -56,9 +56,9 @@ def get_batch_systems_from_config(config: ConfigParser) -> str:
56
if config.getboolean(section=batch_system, option="enabled", fallback=None):
57
batch_systems.append(batch_system)
58
59
- # Special case: Bosco (see SOFTWARE-3720); use the Bosco.batch argument.
60
- if config.getboolean("Bosco", "enabled", fallback=False):
61
- bosco_batch = config.get("Bosco", "batch", fallback=None)
+ # Special case: BOSCO (see SOFTWARE-3720); use the BOSCO.batch argument.
+ if config.getboolean("BOSCO", "enabled", fallback=False):
+ bosco_batch = config.get("BOSCO", "batch", fallback=None)
62
if bosco_batch:
63
try:
64
batch_systems.append(BATCH_SYSTEMS_CASE_MAP[bosco_batch.lower()])
0 commit comments