Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
strudel2_backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hpc-team
strudel2_backend
Commits
70376a17
Commit
70376a17
authored
2 years ago
by
Chris Hines
Browse files
Options
Downloads
Patches
Plain Diff
observed that m3 is giving stderr containing the string locale and then proceeding to work okanyway
parent
8a6ac3d4
Loading
Loading
2 merge requests
!90
I think there is a problem with multiple threads creating multiple sessions...
,
!84
observed that m3 is giving stderr containing the string locale and then proceeding to work okanyway
Pipeline
#56305
passed
2 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tes/sshwrapper/__init__.py
+1
-1
1 addition, 1 deletion
tes/sshwrapper/__init__.py
with
1 addition
and
1 deletion
tes/sshwrapper/__init__.py
+
1
−
1
View file @
70376a17
...
...
@@ -377,7 +377,7 @@ class Ssh:
raise
SshExecException
(
message
=
msg
)
logger
.
debug
(
"
leaving execute
"
)
# Because people often put stuff in their bashrc which casuses stderr to be non-empty, we will swallow errors in the bashrc without comment
if
b
'
bashrc
'
in
stderr
:
if
b
'
bashrc
'
in
stderr
or
b
'
locale
'
in
stderr
:
return
{
'
stdout
'
:
stdout
,
'
stderr
'
:
b
''
}
else
:
return
{
'
stdout
'
:
stdout
,
'
stderr
'
:
stderr
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment