1
UIの問題を更新しようとしました(割り当て/設定の重大度/公開)。しかし、何も追加しません。 iはネットワーク交換を参照してiが404を有する: ソナー5.6:問題を更新できません
を{ "エラー":[{ "MSGは"} "キーに関する問題 '76b53a17-fa8f-4d04-b999-1fd5e401fee0' は存在しません"]}しかし、私のデータベース(mysql)で私の問題が見つかりました:
mysql> select kee from issues where kee='76b53a17-fa8f-4d04-b999-1fd5e401fee0';
+--------------------------------------+
| kee |
+--------------------------------------+
| 76b53a17-fa8f-4d04-b999-1fd5e401fee0 |
+--------------------------------------+
1 row in set (0.00 sec)
私はあなたのソナーを実行したクエリを検索しようとします。私達はちょうどソナー(IssueFinderとiBatisの設定)の頭部のバージョンでそれを見つけて、それが仕事だ:
select i.id,
i.kee as kee,
i.rule_id as ruleId,
i.severity as severity,
i.manual_severity as manualSeverity,
i.message as message,
i.line as line,
i.locations as locations,
i.gap as gap,
i.effort as effort,
i.status as status,
i.resolution as resolution,
i.checksum as checksum,
i.assignee as assignee,
i.author_login as authorLogin,
i.tags as tagsString,
i.issue_attributes as issueAttributes,
i.issue_creation_date as issueCreationTime,
i.issue_update_date as issueUpdateTime,
i.issue_close_date as issueCloseTime,
i.created_at as createdAt,
i.updated_at as updatedAt,
r.plugin_rule_key as ruleKey,
r.plugin_name as ruleRepo,
r.language as language,
p.kee as componentKey,
i.component_uuid as componentUuid,
p.module_uuid as moduleUuid,
p.module_uuid_path as moduleUuidPath,
p.path as filePath,
root.kee as projectKey,
i.project_uuid as projectUuid,
i.issue_type as type
from issues i
inner join rules r on r.id=i.rule_id
inner join projects p on p.uuid=i.component_uuid
inner join projects root on root.uuid=i.project_uuid
where i.kee='76b53a17-fa8f-4d04-b999-1fd5e401fee0';
それが1行を返します。 私は何ができますか?バグですか?
おかげで、それが仕事だと削除 – Duff