From c97a23dfc3475974281df46ac6e8a9314f853628 Mon Sep 17 00:00:00 2001 From: Ian Lumsden Date: Fri, 7 Jul 2023 12:18:58 -0700 Subject: [PATCH] Fixes a bug that caused a mismatch in the default DTL used by clients and the module --- src/core/dyad_core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/dyad_core.c b/src/core/dyad_core.c index 31daf3d8..e64d10d6 100644 --- a/src/core/dyad_core.c +++ b/src/core/dyad_core.c @@ -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");