我会根据医生的要求来设置所有的东西。为什么应用程序在“保存”下面的对话框底部返回错误?回购是存在的!
编辑
api服务器日志报告说,它试图对收集器项集合上的options.url运行查询,但是集合项没有设置此字段:
2022-11-14 05:11:31,089 [http-nio-8080-exec-6] DEBUG o.s.data.mongodb.core.MongoDbUtils - Getting Mongo Database name=[dashboarddb]
2022-11-14 05:11:31,107 [http-nio-8080-exec-6] INFO c.c.d.a.t.JwtAuthenticationFilter - correlation_id=NULL application=hygieia, service=api, requester=admin, duration=135, uri=/api/collector/item/type/searchField/scm, request_method=GET, status=200, client_ip=127.0.0.1, x-forwarded-for=null, request_params=search:[https://github.com/githubtraining/hellogitworld.git],searchField:[options.url],size:[20]

发布于 2022-11-20 08:46:55
我花了很多时间调查。我能够通过在dashboarddb mongodb中为GitHub/SCM的collector_items条目手动添加repo和分支来解决这个问题。UI中的submit()函数不能正常工作。字段不在url.options.url中,因为url包含字符串。最后,dashboardId被错误地设置在collector_items上。它指向Product,而应该指向SCM收集器。
https://stackoverflow.com/questions/74316046
复制相似问题