Skip to content
Snippets Groups Projects

[webservice] Select partition based on beamtime dates

Merged Cyril Danilevski requested to merge feat/proposal_date_slurm_partition into master
2 unresolved threads
+ 12
12
@@ -568,24 +568,24 @@ async def get_slurm_partition(
logging.error(Errors.MDC_RESPONSE.format(response))
partition = 'exfel'
active_now = False
status_beamtime = response.json().get('flg_beamtime_status', 'whoopsie')
if status_beamtime in ['R', 'A']:
partition = 'upex-high' if action == 'dark' else 'upex-middle'
# A proposal can have several beamtimes during which data can be taken
# that are independent from the start and end dates.
beamtimes = response.json().get('beamtimes', [])
active_now = False
now = datetime.now().timestamp()
for beamtime in beamtimes:
begin = datetime.fromisoformat(beamtime['begin_at']).timestamp()
end = datetime.fromisoformat(beamtime['end_at']).timestamp()
if begin <= now <= end:
active_now = True
break
partition = partition if active_now else 'exfel'
# A proposal can have several beamtimes during which data can be taken
# that are independent from the start and end dates.
beamtimes = response.json().get('beamtimes', [])
now = datetime.now().timestamp()
for beamtime in beamtimes:
begin = datetime.fromisoformat(beamtime['begin_at']).timestamp()
end = datetime.fromisoformat(beamtime['end_at']).timestamp()
if begin <= now <= end:
active_now = True
break
partition = partition if active_now else 'exfel'
# NOTE: non-zero at cycle index 4 (`str(cycle)[4]`) indicates commissioning
if run_id and cycle and str(cycle)[4] != '0':
Loading