Theodore Teach
Theodore Teach
https://github.com/ehang-io/nps/issues/688
pandas读取csv文件的时候编码没对。gbk,gb18030,你都试试
> May I ask if the code link for the first version using VGG cannot be found? Is there still a link available The code of first version was removed...
> Celery 5.3.4 and the bug still happens ☹️ This bug was hasppend in 2016
> redis server and redis-py versions you are using? redis-server 7.0 redis==5.0.0 kombu==5.3.2 celery==5.3.4 CELERYD_CONCURRENCY = 3 CELERYD_MAX_TASKS_PER_CHILD = 200 CELERYD_FORCE_EXECV = True CELERY_TIMEZONE = "Asia/Shanghai" CELERYD_PREFETCH_MULTIPLIER = 1 BROKER_CONNECTION_MAX_RETRIES...
> is this issue a duplicate? I found that if I set BROKER_CONNECTION_MAX_RETRIES = None,celery will reconnect redis.if set BROKER_CONNECTION_MAX_RETRIES = 0, it won't. I can't ensure it's celery's bug.
你要看一下这里面有没有图片。是否是支持的图片格式。
我还配置了app.config["APPLICATION_ROOT"] = "/eng/",其他接口都可以使用,只有/docs接口没有办法用
经过测试,问题出现在 这行return render_template(ui_file, spec_url=self.openapi_url),改成return render_template(ui_file, spec_url=“eng" + self.openapi_url)这样就是可以的 @siwa_bp.route(self.doc_url) def doc_html(): siwa_user = self.app.config.get("SIWA_USER") siwa_pass = self.app.config.get("SIWA_PASSWORD") if siwa_user and siwa_pass: global users users = { siwa_user: generate_password_hash(siwa_pass), } login_info...