diff options
Diffstat (limited to 'server/providers')
-rw-r--r-- | server/providers/data_provider_be.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/providers/data_provider_be.c b/server/providers/data_provider_be.c index 3d824c39..6cd86e89 100644 --- a/server/providers/data_provider_be.c +++ b/server/providers/data_provider_be.c @@ -681,8 +681,8 @@ static int be_cli_init(struct be_ctx *ctx) } /* Enable automatic reconnection to the Data Provider */ - ret = confdb_get_int(ctx->cdb, ctx, ctx->conf_path, - "retries", 3, &max_retries); + ret = confdb_get_int(ctx->cdb, ctx, SERVICE_CONF_ENTRY, + "reconnection_retries", 3, &max_retries); if (ret != EOK) { DEBUG(0, ("Failed to set up automatic reconnection\n")); return ret; |