Skip to content
New issue

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

mark cvmfs client errors as node errors #364

Merged
merged 4 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions iceprod/server/plugins/condor_direct.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ async def upload_logfiles(self, task_id, dataset_id, submit_dir=None, reason='')
if ('No such file or directory' in line
or 'No space left on device' in line
or 'Illegal instruction' in line
or 'Input/output error' in line
or ('Killed' in line and 'env-shell.sh' in line)
or ('python: command not found' in line and 'env-shell.sh' in line)
or 'py3-v4.1.1/RHEL_8_x86_64/lib/libCore.so.6.18: undefined symbol: usedToIdentifyRootClingByDlSym' in line
Expand Down
8 changes: 4 additions & 4 deletions requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ asyncache==0.3.1
# via iceprod (setup.py)
babel==2.12.1
# via sphinx
boto3==1.28.53
boto3==1.28.56
# via iceprod (setup.py)
botocore==1.31.53
botocore==1.31.56
# via
# boto3
# s3transfer
Expand Down Expand Up @@ -111,7 +111,7 @@ requests-futures==1.0.1
# wipac-rest-tools
requests-toolbelt==1.0.0
# via iceprod (setup.py)
s3transfer==0.6.2
s3transfer==0.7.0
# via boto3
setproctitle==1.3.2
# via iceprod (setup.py)
Expand Down Expand Up @@ -154,7 +154,7 @@ typing-extensions==4.8.0
# via
# qrcode
# wipac-dev-tools
unidecode==1.3.6
unidecode==1.3.7
# via iceprod (setup.py)
urllib3==1.26.16
# via
Expand Down
8 changes: 4 additions & 4 deletions requirements-tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ asyncache==0.3.1
# via iceprod (setup.py)
beautifulsoup4==4.12.2
# via iceprod (setup.py)
boto3==1.28.53
boto3==1.28.56
# via
# iceprod (setup.py)
# moto
botocore==1.31.53
botocore==1.31.56
# via
# boto3
# moto
Expand Down Expand Up @@ -158,7 +158,7 @@ responses==0.23.3
# via moto
respx==0.20.2
# via iceprod (setup.py)
s3transfer==0.6.2
s3transfer==0.7.0
# via boto3
setproctitle==1.3.2
# via iceprod (setup.py)
Expand Down Expand Up @@ -189,7 +189,7 @@ typing-extensions==4.8.0
# via
# qrcode
# wipac-dev-tools
unidecode==1.3.6
unidecode==1.3.7
# via iceprod (setup.py)
urllib3==1.26.16
# via
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ anyio==4.0.0
# via httpcore
asyncache==0.3.1
# via iceprod (setup.py)
boto3==1.28.53
boto3==1.28.56
# via iceprod (setup.py)
botocore==1.31.53
botocore==1.31.56
# via
# boto3
# s3transfer
Expand Down Expand Up @@ -94,7 +94,7 @@ requests-futures==1.0.1
# wipac-rest-tools
requests-toolbelt==1.0.0
# via iceprod (setup.py)
s3transfer==0.6.2
s3transfer==0.7.0
# via boto3
setproctitle==1.3.2
# via iceprod (setup.py)
Expand All @@ -115,7 +115,7 @@ typing-extensions==4.8.0
# via
# qrcode
# wipac-dev-tools
unidecode==1.3.6
unidecode==1.3.7
# via iceprod (setup.py)
urllib3==1.26.16
# via
Expand Down
Loading