Skip to content

Commit

Permalink
remove extra debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyjux committed Oct 16, 2024
1 parent dc2f68e commit 3329a79
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions microservices/kubeApi/routers/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,6 @@ 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("insert batch: " + str(insert_batch))

Expand Down

0 comments on commit 3329a79

Please sign in to comment.