Skip to content

Commit

Permalink
debug log all namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyjux committed Oct 16, 2024
1 parent 8656e18 commit b65f165
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions microservices/kubeApi/routers/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down

0 comments on commit b65f165

Please sign in to comment.