ZIANGG 发表于 2025-3-17 20:54:31

通区问题,使用updatemaintongfile无法将其他区的文本同步到主区文件里面


--判断是否是主区
            if tonumber(mainServiceId) == tonumber(serviceId) then
                local file = io.open(path, "a+")
                local result, errinfo = pcall(function()
                  if file then
                        file:write(tongqu_zhuli_list)
                        file:close()
                  end
                end)   
                --创建通区转区文件
                tongfile(0, path)                                 
            else
                getmaintongfile(mainServiceId, log_path, path)            --不是主区拉取主区文件(带主区命令),主区文件替换本地文件
                local log_file = io.open(log_path, "a+")
                local result, errinfo = pcall(function()
                  if log_file then
                        log_file:write(tongqu_zhuli_list)
                        log_file:close()
                  end
                end)
                --通区同步文本
                updatemaintongfile(mainServiceId,path, log_path)      
            end

   end)
end

本区的文件写入了,但是同步到主区文件的时候就是同步不上,请问这是什么问题呢?


996技术-wang 发表于 2025-3-20 09:22:24

加输出看看是卡在哪里了
页: [1]
查看完整版本: 通区问题,使用updatemaintongfile无法将其他区的文本同步到主区文件里面