We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad606a8 commit 8403439Copy full SHA for 8403439
src/modules/job-info/lookup.c
@@ -29,7 +29,7 @@ struct lookup_ctx {
29
const flux_msg_t *msg;
30
flux_jobid_t id;
31
json_t *keys;
32
- bool check_eventlog;
+ bool lookup_eventlog;
33
int flags;
34
flux_future_t *f;
35
bool allow;
@@ -125,7 +125,7 @@ static int lookup_keys (struct lookup_ctx *l)
125
}
126
flux_future_set_flux (fall, l->ctx->h);
127
128
- if (l->check_eventlog) {
+ if (l->lookup_eventlog) {
129
if (lookup_key (l, fall, "eventlog") < 0)
130
goto error;
131
@@ -288,7 +288,7 @@ static int check_keys_for_eventlog (struct lookup_ctx *l)
288
return 0;
289
290
291
- l->check_eventlog = true;
+ l->lookup_eventlog = true;
292
293
294
0 commit comments