We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One of the LHCb SiteDirectors had a separate issue which then resulted in a crash in DIRAC:
Traceback (most recent call last): File "/opt/dirac/versions/v11.0.24-1700482381/Linux-x86_64/lib/python3.11/site-packages/DIRAC/Core/Base/AgentModule.py", line 310, in am_secureCall result = functor(*args) ^^^^^^^^^^^^^^ File "/opt/dirac/versions/v11.0.24-1700482381/Linux-x86_64/lib/python3.11/site-packages/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py", line 331, in execute result = self.submitPilots() ^^^^^^^^^^^^^^^^^^^ File "/opt/dirac/versions/v11.0.24-1700482381/Linux-x86_64/lib/python3.11/site-packages/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py", line 457, in submitPilots res = self._submitPilotsToQueue(pilotsToSubmit, ce, queueName) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/dirac/versions/v11.0.24-1700482381/Linux-x86_64/lib/python3.11/site-packages/DIRAC/WorkloadManagementSystem/Agent/SiteDirector.py", line 748, in _submitPilotsToQueue submitResult = ce.submitJob(executable, "", pilotsToSubmit) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/dirac/versions/v11.0.24-1700482381/Linux-x86_64/lib/python3.11/site-packages/DIRAC/Resources/Computing/SSHComputingElement.py", line 550, in submitJob result = self._submitJobToHost(submitFile, numberOfJobs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/opt/dirac/versions/v11.0.24-1700482381/Linux-x86_64/lib/python3.11/site-packages/DIRAC/Resources/Computing/SSHComputingElement.py", line 597, in _submitJobToHost if result["Status"] != 0: ~~~~~~^^^^^^^^^^ TypeError: string indices must be integers, not 'str'
where result was
result
Traceback (most recent call last): File "/home/dirac/execute_batch", line 354, in <module> result = getattr(batch, method)(**inputDict) File "/home/dirac/execute_batch", line 102, in submitJob jdlFile.write( File "/usr/lib64/python3.9/tempfile.py", line 478, in func_wrapper return func(*args, **kwargs) TypeError: a bytes-like object is required, not 'str'
The text was updated successfully, but these errors were encountered:
There is another bug than #7340 that result might not be a dict for if result["Status"] != 0:
if result["Status"] != 0:
Sorry, something went wrong.
fstagni
Successfully merging a pull request may close this issue.
One of the LHCb SiteDirectors had a separate issue which then resulted in a crash in DIRAC:
where
result
wasThe text was updated successfully, but these errors were encountered: