diff --git a/dflow/deployer/deploy/abnormal_status_handler/abnormal_status_handler.cc b/dflow/deployer/deploy/abnormal_status_handler/abnormal_status_handler.cc
index 7ed04e400..efa326b4f 100644
--- /opt/cloud/agent_1766032928187_ZXxuP/workspace/j_kG85BH6L/dflow/deployer/deploy/abnormal_status_handler/abnormal_status_handler.cc
+++ /opt/cloud/agent_1766032928187_ZXxuP/workspace/j_kG85BH6L/dflow/deployer/deploy/abnormal_status_handler/abnormal_status_handler.cc
@@ -689,11 +689,11 @@
   deploying_root_model_cnt_--;
 }
 
-bool AbnormalStatusHandler::IsDeployingRootModel() {
+bool AbnormalStatusHandler::IsDeployingRootModel() const {
   return deploying_root_model_cnt_.load() != 0U;
 }
 
-bool AbnormalStatusHandler::IsAllCallbackInitFinished() {
+bool AbnormalStatusHandler::IsAllCallbackInitFinished() const {
   std::lock_guard<std::mutex> lk(abnormal_status_callback_info_.mu);
   return abnormal_status_callback_info_.callback_list.size() == deployed_models_.size();
 }

