diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-04-17 08:36:56 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-06-05 09:12:46 +0200 |
commit | 01eb97af2aaea9b12ba2d346da8b032e793bb985 (patch) | |
tree | 7d598f27cb7f6fed457b4845b05cccd566b96a87 /mod/mod-ci-github.cxx | |
parent | c765b8cf0aca2d4121919f21880d9923fd772bb8 (diff) |
Misc. changes
Diffstat (limited to 'mod/mod-ci-github.cxx')
-rw-r--r-- | mod/mod-ci-github.cxx | 10 |
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; } |