aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois Kritzinger <francois@codesynthesis.com>2024-04-17 08:36:56 +0200
committerFrancois Kritzinger <francois@codesynthesis.com>2024-04-24 15:16:14 +0200
commit4ab8ea7eca75dc580cc1088eac3ce12a1abb8578 (patch)
tree38ce03cfc77cad7952efd14431bd47815f6859e2
parentbff60002c9cd2b5881bce1bb521364f84af00cb4 (diff)
Misc. changes
-rw-r--r--mod/mod-ci-github.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/mod/mod-ci-github.cxx b/mod/mod-ci-github.cxx
index bb174cf..2419d32 100644
--- a/mod/mod-ci-github.cxx
+++ b/mod/mod-ci-github.cxx
@@ -944,7 +944,7 @@ namespace brep
// Parse the HTTP response.
//
- int sc; // Status code.
+ uint16_t sc; // Status code.
try
{
// Note: re-open in/out so that they get automatically closed on
@@ -1357,7 +1357,8 @@ namespace brep
//
string ep ("app/installations/" + to_string (iid) + "/access_tokens");
- int sc (github_post (iat, ep, strings {"Authorization: Bearer " + jwt}));
+ uint16_t sc (
+ github_post (iat, ep, strings {"Authorization: Bearer " + jwt}));
// Possible response status codes from the access_tokens endpoint:
//
@@ -1552,8 +1553,9 @@ namespace brep
ostream&
operator<< (ostream& os, const service_data::check_run& cr)
{
- os << "check_run { node_id: " << cr.node_id.value_or ("null")
- << ", build_id: " << cr.build_id << " }";
+ os << "node_id: " << cr.node_id.value_or ("null")
+ << ", build_id: " << cr.build_id
+ << ", state: " << (cr.state ? to_string (*cr.state) : "null");
return os;
}