zhaoyong
Results
1
issues of
zhaoyong
**Problem description** xxl-job调度任务成功,但回调时重定向到xxl登录。xxl_client.XXL.callback() 方法尝试从服务器获取JSON数据,但服务器返回了HTML内容(text/html;charset=utf-8),这与预期不符,导致了解析失败。 **Steps to reproduce the problem** ```python config = ExecutorConfig( xxl_admin_baseurl="http://localhost:20052/xxl-job-admin/api/", executor_app_name="ftp-server", executor_host="10.1.1.1", executor_port=9992, access_token='xxl-job', debug=True, ) app = PyxxlRunner(config) @app.register(name="pushProjectBusinessDataToFtp") def test_task(): # you can get...