diff --git a/microservices/kubeApi/routers/routes.py b/microservices/kubeApi/routers/routes.py index 7cbb7d1..635ce39 100644 --- a/microservices/kubeApi/routers/routes.py +++ b/microservices/kubeApi/routers/routes.py @@ -176,9 +176,8 @@ async def verify_and_create_routes(namespace: str, request: Request): insert_batch = [x for x in source_routes if not in_list(x, existing_routes)] delete_batch = [y for y in existing_routes if not in_list(y, source_routes)] - if namespace == "gw-41c0c": - logger.debug("source routes: " + str(source_routes)) - logger.debug("existing routes: " + str(existing_routes)) + logger.debug("source routes: " + str(source_routes)) + logger.debug("existing routes: " + str(existing_routes)) logger.debug("insert batch: " + str(insert_batch))