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
INFO root : bad float/int [MachineAttrGPUs_GlobalMemoryMb0]: classad.classad.Value.Undefined
Traceback (most recent call last):
File "/monitoring/condor_utils.py", line 633, in filter_keys
data[k] = float(data[k])
classad.ClassAdValueError: Unable to convert expression to numeric type.
It seems that these are a classad expression, and could probably be evaluated like
data[k] = float(data[k].eval())
which would reduce the amount of errors that clog the logs
The text was updated successfully, but these errors were encountered:
Seeing the following in logs
It seems that these are a classad expression, and could probably be evaluated like
which would reduce the amount of errors that clog the logs
The text was updated successfully, but these errors were encountered: