Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAOS-17107 cart: Mark parent as failed during corpc #15905

Draft
wants to merge 1 commit into
base: release/2.6
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/cart/crt_corpc.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* (C) Copyright 2016-2023 Intel Corporation.
* (C) Copyright 2025 Hewlett Packard Enterprise Development LP
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*/
Expand Down Expand Up @@ -648,7 +649,7 @@ crt_corpc_reply_hdlr(const struct crt_cb_info *cb_info)
if (rc != 0) {
RPC_CERROR(crt_quiet_error(rc), DB_NET, child_rpc_priv, "error, rc: "DF_RC"\n",
DP_RC(rc));
co_info->co_rc = rc;
crt_corpc_fail_parent_rpc(parent_rpc_priv, rc);
}
/* propagate failure rc to parent */
if (child_rpc_priv->crp_reply_hdr.cch_rc != 0)
Expand Down
Loading