diff --git a/control-plane/agents/src/bin/core/nexus/operations_helper.rs b/control-plane/agents/src/bin/core/nexus/operations_helper.rs index 57ffe7b7d..ef926cf1a 100644 --- a/control-plane/agents/src/bin/core/nexus/operations_helper.rs +++ b/control-plane/agents/src/bin/core/nexus/operations_helper.rs @@ -141,11 +141,13 @@ impl OperationGuardArc { replica_state.node.clone(), ); if let Err(error) = node.set_replica_entity_id(&set_entity_id).await { - tracing::error!( - replica.uuid = %replica_state.uuid, - %error, - "Failed to set entity_id", - ); + if error.tonic_code() != tonic::Code::Unimplemented { + tracing::error!( + replica.uuid = %replica_state.uuid, + %error, + "Failed to set entity_id", + ); + } } } }