From 4ab8ea7eca75dc580cc1088eac3ce12a1abb8578 Mon Sep 17 00:00:00 2001 From: Francois Kritzinger Date: Wed, 17 Apr 2024 08:36:56 +0200 Subject: Misc. changes --- mod/mod-ci-github.cxx | 10 ++++++---- 1 file 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; } -- cgit v1.1