diff options
author | Paul Spooren <mail@aparcar.org> | 2021-08-22 11:07:14 -1000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-08-23 08:47:08 -1000 |
commit | 23ce5b0e6feb141b272d277a0b72a12add67d9b6 (patch) | |
tree | 02469a07e34bb7b94b58956803e8b812ba62d4fd /utils/auc/src | |
parent | 351e26b238c5f132178db347c86d44f3a20c638e (diff) |
auc: read `detail` not `message` from server
The server API was unified and therefore the servers response is now
`detail` rather than `message`, all found under the new endpoint
/api/v1/build.
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'utils/auc/src')
-rw-r--r-- | utils/auc/src/auc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/auc/src/auc.c b/utils/auc/src/auc.c index 5d3a393a5..227cbfdb8 100644 --- a/utils/auc/src/auc.c +++ b/utils/auc/src/auc.c @@ -48,7 +48,7 @@ #define API_JSON "json" #define API_JSON_EXT "." API_JSON #define API_PACKAGES "packages" -#define API_REQUEST "api/build" +#define API_REQUEST "api/v1/build" #define API_STATUS_QUEUED "queued" #define API_STATUS_STARTED "started" #define API_STORE "store" @@ -236,7 +236,7 @@ enum { TARGET_ENQUEUED_AT, TARGET_IMAGE_PREFIX, TARGET_IMAGES, - TARGET_MESSAGE, + TARGET_DETAIL, TARGET_MANIFEST, TARGET_METADATA_VERSION, TARGET_REQUEST_HASH, @@ -263,7 +263,7 @@ static const struct blobmsg_policy target_policy[__TARGET_MAX] = { [TARGET_IMAGE_PREFIX] = { .name = "image_prefix", .type = BLOBMSG_TYPE_STRING }, [TARGET_IMAGES] = { .name = "images", .type = BLOBMSG_TYPE_ARRAY }, [TARGET_MANIFEST] = { .name = "manifest", .type = BLOBMSG_TYPE_TABLE }, - [TARGET_MESSAGE] = { .name = "message", .type = BLOBMSG_TYPE_STRING }, + [TARGET_DETAIL] = { .name = "detail", .type = BLOBMSG_TYPE_STRING }, [TARGET_METADATA_VERSION] = { .name = "metadata_version", .type = BLOBMSG_TYPE_INT32 }, [TARGET_REQUEST_HASH] = { .name = "request_hash", .type = BLOBMSG_TYPE_STRING }, [TARGET_SOURCE_DATE_EPOCH] = { .name = "source_date_epoch", .type = BLOBMSG_TYPE_STRING }, @@ -1903,8 +1903,8 @@ freebranches: ) fputs(blobmsg_get_string(tb[TARGET_STDERR]), stderr); - if (tb[TARGET_MESSAGE]) { - fputs(blobmsg_get_string(tb[TARGET_MESSAGE]), stderr); + if (tb[TARGET_DETAIL]) { + fputs(blobmsg_get_string(tb[TARGET_DETAIL]), stderr); fputc('\n', stderr); } |