We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5481d16 commit 61005adCopy full SHA for 61005ad
dec2/formulas/salt/dask/distributed/templates/dworker.conf
@@ -1,6 +1,10 @@
1
{%- from 'conda/settings.sls' import install_prefix with context -%}
2
{%- from 'dask/distributed/settings.sls' import scheduler_host with context -%}
3
4
+{%- set environment = [] -%}
5
+{%- do environment.append('LC_ALL="C.UTF-8"') -%}
6
+{%- do environment.append('LANG="C.UTF-8"') -%}
7
+
8
[program:dworker]
9
command={{ install_prefix }}/bin/python {{ install_prefix }}/bin/dworker {{ scheduler_host }}:8786
10
startsecs=1
@@ -10,3 +14,4 @@ autorestart=true
14
stdout_logfile=/var/log/dworker.log
11
15
stdout_logfile_maxbytes=50MB
12
16
redirect_stderr=true
17
+environment={{ environment | join(',') }}
0 commit comments