Commit 84867933 authored by 赵小蒙's avatar 赵小蒙

join_path逻辑修复

parent 195998a0
......@@ -16,7 +16,8 @@ def get_delta_time(input_time):
def join_path(*args):
return '/'.join(s.rstrip('/') for s in args)
return '/'.join(str(s).rstrip('/') for s in args)
#配置全局的errlog_path,方便demo同步引用
error_log_path = "s3://llm-pdf-text/err_logs/"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment