Skip to content

Commit

Permalink
Fixes a bug that caused a mismatch in the default DTL used by clients…
Browse files Browse the repository at this point in the history
… and the module
  • Loading branch information
ilumsden committed Jul 7, 2023
1 parent e195afc commit ee17831
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/dyad_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -723,12 +723,12 @@ dyad_rc_t dyad_init_env (dyad_ctx_t **ctx)
} else {
if (debug) {
fprintf (stderr, "Invalid DTL mode provided through %s. \
Defaulting the FLUX_RPC\n", DYAD_DTL_MODE_ENV);
Defaulting to UCX\n", DYAD_DTL_MODE_ENV);
}
dtl_mode = DYAD_DTL_FLUX_RPC;
dtl_mode = DYAD_DTL_UCX;
}
} else {
dtl_mode = DYAD_DTL_FLUX_RPC;
dtl_mode = DYAD_DTL_UCX;
}
if (debug)
fprintf (stderr, "DYAD_CORE: retrieved configuration from environment. Now initializing DYAD\n");
Expand Down

0 comments on commit ee17831

Please sign in to comment.