在Python中进行排程-请求的会话超时为Xms,改为Yms

问题描述

我曾经用Python创建一个调度程序,它可以完美运行,但是,我在进程开始之前收到了此消息-“请求的会话超时为3600000ms,取而代之的是60000ms”。我不明白这条消息,请您帮忙...

代码-

from opcua import Client
import schedule
import pandas as pd
from time import gmtime,strftime,sleep,localtime
import time
import os

class extract(object):
    def __init__(self,url):
     ....
    def generate(self):
     ....
e = extract('opc.tcp://...')

schedule.every(1).seconds.do(e.data)
while True:
    schedule.run_pending()

谢谢

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)