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 b50a09a commit 4323333Copy full SHA for 4323333
root/app/swag-ondemand.py
@@ -52,7 +52,7 @@ def process_containers(self):
52
logging.info(f"Started monitoring {container.name} for urls: {container_urls}")
53
else:
54
last_accessed = self.ondemand_containers[container.name]["last_accessed"]
55
- if container_urls != self.ondemand_containers["urls"]:
+ if container_urls != self.ondemand_containers[container.name]["urls"]:
56
logging.info(f"Updated urls for {container.name} to: {container_urls}")
57
self.ondemand_containers[container.name] = { "status": container.status, "urls": container_urls, "last_accessed": last_accessed }
58
0 commit comments