Skip to content

Commit

Permalink
qmanager: track API changes in core
Browse files Browse the repository at this point in the history
Problem: the raw RPC interfaces are changing to use a size_t
instead of int for payload size.

Update scheduler usage.

flux-framework/flux-core#6467 must be merged before this will pass CI.
  • Loading branch information
garlick committed Dec 10, 2024
1 parent 6a7ecc0 commit 139d021
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qmanager/modules/qmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ static int handshake_jobmanager (std::shared_ptr<qmanager_ctx_t> &ctx)

static void status_request_cb (flux_t *h, flux_msg_handler_t *w, const flux_msg_t *msg, void *arg)
{
int len = 0;
size_t len = 0;
const char *payload;
flux_future_t *f = NULL;

Expand Down Expand Up @@ -310,7 +310,7 @@ static void feasibility_request_cb (flux_t *h,
const flux_msg_t *msg,
void *arg)
{
int size = 0;
size_t size = 0;
flux_future_t *f = nullptr;
const char *data = nullptr;

Expand Down

0 comments on commit 139d021

Please sign in to comment.