使用了几天CDN API接口下载日志,每次手动执行脚本,都是成功的,但用系统任务计划执行,都是失败的,
原因:
日志中记录的执行报错信息:decode() argument 1 must be string, not None
这个信息是在接口脚本:aliyun/api/base.py引发的
引发的相关代码:
def percent_encode(encodeStr):
encodeStr = str(encodeStr)
res = urllib.quote(encodeStr.decode(sys.stdin.encoding).encode('utf8'), '')
res = res.replace('+', '%20')
res = res.replace('*', '%2A')
res = res.replace('%7E', '~')
return res
具体是出在
sys.stdin.encoding,
备注:
终端的输入编码:sys.stdin.encoding终端的输出编码:sys.stdout.encoding
用任务计划自动执行的时候,就不涉及终端输入了,结果就报错了
我把sys.stdin.encoding去掉了,系统crontab执行就正常了
修改后的代码:
def percent_encode(encodeStr):
encodeStr = str(encodeStr)
res = urllib.quote(encodeStr.encode('utf8'), '')
#res = urllib.quote(encodeStr.decode(sys.stdin.encoding).encode('utf8'), '')
res = res.replace('+', '%20')
res = res.replace('*', '%2A')
res = res.replace('%7E', '~')
return res
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。