我已经编译并运行了Hygieia和Jira收集器。差不多了。Jira收集器正在调用https://url.example.com/jira/rest/tempo-teams/1/team,后者返回一个404。它看起来像id Tempo-Teams附加组件,我猜我们没有。我们的组织不使用团队。我们可以在没有teams模块的情况下使用这个收集器吗?注释掉属性文件中的自定义字段定义
#############################################################################
# In Jira, your instance will have its own custom field created for 'team'
# This field allows you to specify that data field for your instance
# of Jira. Note: You can retrieve your instance's team ID field name via the following URI where your
# queried user story issue has team set on it; your custom field name describes the
# team value you expect to see:
# https://[your-jira-domain-name]/rest/api/2/issue/[some-issue-name]
#############################################################################
#feature.jiraTeamFieldName=似乎没有什么不同。在UI中,团队名称是必需的。我怎么才能不使用这个模块,而不需要处理java代码呢?
谢谢
发布于 2021-03-18 23:25:01
诀窍是在application.properties文件中设置以下内容:
feature.jiraTeamFieldName=
feature.jiraBoardAsTeam=true这将使收集器在Board模式下运行,而不是在Teams模式下运行。
https://stackoverflow.com/questions/66681489
复制相似问题