Skip to content

Commit 80fd0ab

Browse files
[patch] remove extra loggers
1 parent c9c0f8d commit 80fd0ab

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/mas/devops/tekton.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -320,18 +320,13 @@ def preparePipelinesNamespace(dynClient: DynamicClient, instanceId: str = None,
320320
if waitForBind:
321321
logger.info(f"Storage class {storageClass} uses volumeBindingMode={volumeBindingMode}, waiting for PVC to bind")
322322
pvcIsBound = False
323-
logger.info(msg=f"pvcIsBound={pvcIsBound}") # need to remove
324323
while not pvcIsBound:
325324
configPVC = pvcAPI.get(name="config-pvc", namespace=namespace)
326-
logger.info(f"configPVC: {configPVC}") # need to remove
327-
logger.info(f"configPVC.status.phase: {configPVC.status.phase}") # need to remove
328325
if configPVC.status.phase == "Bound":
329-
logger.info(f"pvcIsBound: {pvcIsBound}") # need to remove
330326
pvcIsBound = True
331327
else:
332328
logger.debug("Waiting 15s before checking status of PVC again")
333329
logger.debug(configPVC)
334-
logger.info(f"Else part 265: {configPVC}") # need to remove
335330
sleep(15)
336331
else:
337332
logger.info(f"Storage class {storageClass} uses volumeBindingMode={volumeBindingMode}, skipping PVC bind wait")

0 commit comments

Comments
 (0)