Lint
Some checks failed
Lint Checks / Run linter (pull_request) Failing after 34s
Smoke Test / Run basic test suite (pull_request) Successful in 4m10s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m55s
Deploy Test / Run deploy test suite (pull_request) Successful in 4m59s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 7m45s

This commit is contained in:
Thomas E Lackey 2024-08-14 19:15:04 -05:00
parent 49c97def6f
commit e77b1847a5

View File

@ -310,15 +310,14 @@ def command(ctx, kube_config, laconic_config, image_registry, deployment_parent_
continue continue
if skip_by_tag(r, include_tags, exclude_tags): if skip_by_tag(r, include_tags, exclude_tags):
main_logger.log("Skipping request %s, filtered by tag (include %s, exclude %s, present %s)" % (r.id, main_logger.log("Skipping request %s, filtered by tag (include %s, exclude %s, present %s)" %
include_tags, (r.id, include_tags, exclude_tags, r.attributes.tags))
exclude_tags,
r.attributes.tags))
skipped_by_name[requested_name] = r skipped_by_name[requested_name] = r
result = "SKIP" result = "SKIP"
continue continue
main_logger.log_file("Found pending request %s to run application %s on %s." % (r.id, r.attributes.application, requested_name)) main_logger.log_file("Found pending request %s to run application %s on %s." %
(r.id, r.attributes.application, requested_name))
requests_by_name[requested_name] = r requests_by_name[requested_name] = r
except Exception as e: except Exception as e:
result = "ERROR" result = "ERROR"
@ -408,3 +407,4 @@ def command(ctx, kube_config, laconic_config, image_registry, deployment_parent_
except Exception as e: except Exception as e:
main_logger.log("UNCAUGHT ERROR:" + str(e)) main_logger.log("UNCAUGHT ERROR:" + str(e))
raise e raise e