We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6450143 commit b3d8f2cCopy full SHA for b3d8f2c
microservices/kubeApi/routers/routes.py
@@ -176,6 +176,8 @@ async def verify_and_create_routes(namespace: str, request: Request):
176
"dataClass": route["metadata"]["annotations"].get("aviinfrasetting.ako.vmware.com/name").split("-")[-1] if route["metadata"]["annotations"].get("aviinfrasetting.ako.vmware.com/name") else None
177
}
178
)
179
+ logger.debug("source routes: " + str(source_routes))
180
+ logger.debug("existing routes: " + str(existing_routes))
181
182
insert_batch = [x for x in source_routes if not in_list(x, existing_routes)]
183
delete_batch = [y for y in existing_routes if not in_list_by_name(y, source_routes)]
0 commit comments