We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 499120c commit 886723cCopy full SHA for 886723c
1 file changed
pgcommitfest/commitfest/views.py
@@ -1600,7 +1600,7 @@ def cfbot_ingest(message):
1600
branch_status["branch_name"],
1601
branch_status["commit_id"],
1602
branch_status["apply_url"],
1603
- branch_status["build_url"],
+ branch_status.get("build_url", ""),
1604
branch_status["status"],
1605
branch_status["created"],
1606
branch_status["modified"],
@@ -1642,7 +1642,7 @@ def cfbot_ingest(message):
1642
WHERE commitfest_cfbottask.modified < EXCLUDED.modified""",
1643
(
1644
task_status["task_id"],
1645
- task_status["task_url"],
+ task_status.get("task_url", ""),
1646
task_status["task_name"],
1647
patch_id,
1648
branch_id,
0 commit comments