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
CERN is seeing a situation after about a week where the error variable is getting set with global scope and the schedule_task() function is picking it up, assuming there is actually an error and posting explanation-free non-starters.
A two-part fix is required:
First is to force error into local scope by initializing it withing the function:
Second is to figure out where error is being assigned with global scope. (Edit: Looks like this is the only place where this variable is used, so initializing it should be a good fix.)
System showing the error is pse01-gva.cern.ch.
The text was updated successfully, but these errors were encountered:
CERN is seeing a situation after about a week where the
error
variable is getting set with global scope and theschedule_task()
function is picking it up, assuming there is actually an error and posting explanation-free non-starters.A two-part fix is required:
First is to force
error
into local scope by initializing it withing the function:Second is to figure out where
error
is being assigned with global scope. (Edit: Looks like this is the only place where this variable is used, so initializing it should be a good fix.)System showing the error is
pse01-gva.cern.ch
.The text was updated successfully, but these errors were encountered: