SKIP
All checks were successful
Lint Checks / Run linter (pull_request) Successful in 38s
Smoke Test / Run basic test suite (pull_request) Successful in 4m16s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m49s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m9s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 7m31s
All checks were successful
Lint Checks / Run linter (pull_request) Successful in 38s
Smoke Test / Run basic test suite (pull_request) Successful in 4m16s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m49s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m9s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 7m31s
This commit is contained in:
parent
a6deef26ca
commit
71f0f717ad
@ -402,12 +402,13 @@ def command( # noqa: C901
|
|||||||
and previous_requests[r.id].get("status", "") != "RETRY"
|
and previous_requests[r.id].get("status", "") != "RETRY"
|
||||||
):
|
):
|
||||||
main_logger.log(f"Skipping request {r.id}, we've already seen it.")
|
main_logger.log(f"Skipping request {r.id}, we've already seen it.")
|
||||||
|
result = "SKIP"
|
||||||
continue
|
continue
|
||||||
|
|
||||||
app = laconic.get_record(r.attributes.application)
|
app = laconic.get_record(r.attributes.application)
|
||||||
if not app:
|
if not app:
|
||||||
result = "ERROR"
|
|
||||||
main_logger.log(f"Skipping request {r.id}, cannot locate app.")
|
main_logger.log(f"Skipping request {r.id}, cannot locate app.")
|
||||||
|
result = "ERROR"
|
||||||
continue
|
continue
|
||||||
|
|
||||||
requested_name = r.attributes.dns
|
requested_name = r.attributes.dns
|
||||||
|
Loading…
Reference in New Issue
Block a user