From 70889ecf6c39e2320cc1c5433fec24984f468efa Mon Sep 17 00:00:00 2001 From: KSlashh <48985735+KSlashh@users.noreply.github.com> Date: Tue, 3 Mar 2026 09:11:04 +0800 Subject: [PATCH] fix take1 ready handle --- node/src/handle.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/handle.rs b/node/src/handle.rs index 5b21fad5..dbcc96a2 100644 --- a/node/src/handle.rs +++ b/node/src/handle.rs @@ -3349,14 +3349,14 @@ async fn handle_take1_ready_operator( instance_id, graph_id, Some(&message), - GraphStatus::Challenge, + GraphStatus::OperatorKickOff, ) .await? { Some(v) => v, None => return Ok(()), }; - if graph_status != GraphStatus::Challenge { + if graph_status != GraphStatus::OperatorKickOff { tracing::warn!( "Ignore Take1Ready for {instance_id}:{graph_id}: graph status is {graph_status:?}" );