Don't gate on not found

Most services can return not found, add to default list.

Signed-off-by: Guillaume Boutry <guillaume.boutry@canonical.com>
This commit is contained in:
Guillaume Boutry
2025-01-28 10:21:19 +01:00
parent 506c8b198b
commit 04473b490a

View File

@@ -191,4 +191,5 @@ def wait_for_all_endpoints(interface='public', service_codes=None):
requests.codes.ok,
requests.codes.multiple_choices,
requests.codes.unauthorized,
requests.codes.not_found,
] + service_codes.get(service.name, []))