【发布时间】:2023-03-08 20:35:01
【问题描述】:
我有一个发送邮件的主管(e)d python 脚本。当我 ssh 并且脚本从 shell 运行时,一切都很好。输出是一样的,当然没有失败,evalue是0
evalue = -1
try:
f = tempfile.TemporaryFile()
f.write(body.encode('utf-8'))
f.seek(0)
log.debug("'%s'" % "' '".join(call))
for s in call:
log.debug(type(s))
evalue = subprocess.check_call(call, stdin=f)
except Exception as e:
log.exception(e)
finally:
f and f.close()
f = None
log.debug("evalue %s" % evalue)
我看到了输出:
mailer_v1 : DEBUG 'mailx' '-s' 'test ñññ ' '-a' '/tmp/test_ñññ_0,00_E.pdf' '-r' 'test <code@nebulo.se>' 'test@nebulo.se'
: DEBUG <type 'str'>
mailer_v1 : DEBUG <type 'str'>
mailer_v1 : DEBUG <type 'unicode'>
mailer_v1 : DEBUG <type 'str'>
mailer_v1 : DEBUG <type 'unicode'>
mailer_v1 : DEBUG <type 'str'>
mailer_v1 : DEBUG <type 'unicode'>
mailer_v1 : DEBUG <type 'unicode'>
mailer_v1 : ERROR execv() arg 2 must contain only strings
Traceback (most recent call last):
File "/data/workers/mailer_v1", line 90, in <module>
evalue = subprocess.check_call(call, stdin=f)
File "/usr/lib/python2.7/subprocess.py", line 506, in check_call
retcode = call(*popenargs, **kwargs)
File "/usr/lib/python2.7/subprocess.py", line 493, in call
return Popen(*popenargs, **kwargs).wait()
File "/usr/lib/python2.7/subprocess.py", line 679, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child
raise child_exception
TypeError: execv() arg 2 must contain only strings
mailer_v1 : DEBUG evalue -1
shell 中的语言环境是 es_ES.UTF-8,而在 supervisord conf 中我有
environment=LC_ALL=es_ES.UTF-8
谢谢。
【问题讨论】:
-
我从albertoconnor.ca/blog/2012/Jul/21/…得到了解决方案,这是文件系统编码。 sys.getfilesystemencoding 是 ANSI_X3.4-1968。使用 env environment=LC_ALL="es_ES.UTF-8",LANG="es_ES.UTF-8",LC_LANG="es_ES.UTF-8" 现在它是 UTF-8
标签: python subprocess supervisord