Skip to content

Commit

Permalink
Merge pull request #802 from lanl/redis_locale_fix
Browse files Browse the repository at this point in the history
Redis locale fix
  • Loading branch information
jtronge authored Mar 25, 2024
2 parents bd79ef1 + e61bcf6 commit 2022ca0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions beeflow/client/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ def redis():
# strings.
env = dict(os.environ)
env['LANG'] = 'C'
env['LC_ALL'] = 'C'
return subprocess.Popen(cmd, env=env, stdout=log, stderr=log)

# Workflow manager and task manager need to be opened with PIPE for their stdout/stderr
Expand Down

0 comments on commit 2022ca0

Please sign in to comment.