From 95a2da2059311eb57a297302f1263639df50019b Mon Sep 17 00:00:00 2001 From: zeaslity Date: Wed, 22 Nov 2023 11:31:56 +0800 Subject: [PATCH] [ Agent ] [ App ] - fix middlewares bugs --- agent-go/executor/K8sFunction.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent-go/executor/K8sFunction.go b/agent-go/executor/K8sFunction.go index 4dc22f6..9b140f0 100644 --- a/agent-go/executor/K8sFunction.go +++ b/agent-go/executor/K8sFunction.go @@ -145,10 +145,10 @@ func K8sCheckPVCStatusTimeOut(specificPvcName string, supreme string, waitTimeOu } if pvc.Status.Phase == corev1.ClaimBound { - log.DebugF("K8sCheckPVCStatusTimeOut] - PVC %s in namespace %s is running", specificPvcName, supreme) + log.DebugF("[K8sCheckPVCStatusTimeOut] - PVC %s in namespace %s is running", specificPvcName, supreme) return true } else { - log.WarnF("K8sCheckPVCStatusTimeOut] - PVC %s in namespace %s run failed !", specificPvcName, supreme) + log.WarnF("[K8sCheckPVCStatusTimeOut] - PVC %s in namespace %s run failed !", specificPvcName, supreme) return false } }