Skip to content

Commit

Permalink
Fix locale issue for redis on certain systems
Browse files Browse the repository at this point in the history
  • Loading branch information
rstyd committed Mar 5, 2024
1 parent 2ea76d9 commit 0c0781a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion beeflow/client/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,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 All @@ -251,7 +252,7 @@ def start_slurm_restd():
return mgr


MIN_CHARLIECLOUD_VERSION = (0, 34)
MIN_CHARLIECLOUD_VERSION = (0, 33)


def version_str(version):
Expand Down

0 comments on commit 0c0781a

Please sign in to comment.