You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In htcondor_status_updater of the HTCondorAdapter (Batchsystem) there are two potentially dangerous lines during the looping over the rows of the status:
If row['TardisDroneUuid'] is None, there could be several rows with equal row['Machine'], which would cause several rows to be assigned to the same key.
This could be solved by ensuring that TardisDroneUuid is always set to a unique value.
The text was updated successfully, but these errors were encountered:
In
htcondor_status_updater
of theHTCondorAdapter
(Batchsystem) there are two potentially dangerous lines during the looping over the rows of the status:If
row['TardisDroneUuid']
isNone
, there could be several rows with equalrow['Machine']
, which would cause several rows to be assigned to the same key.This could be solved by ensuring that
TardisDroneUuid
is always set to a unique value.The text was updated successfully, but these errors were encountered: