Skip to content

Commit

Permalink
Fix introspector scheduling exception. (#12640)
Browse files Browse the repository at this point in the history
This was caused by a very old refactor, but we never deployed the
introspector scheduler since then so we didn't run into this until now.
  • Loading branch information
oliverchang authored Oct 22, 2024
1 parent 51d06f6 commit 28ba247
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions infra/build/functions/request_introspector_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ def get_build_steps(project_name, image_project, base_images_project):
project_yaml_contents, dockerfile_lines = request_build.get_project_data(
project_name)
return build_and_run_coverage.get_fuzz_introspector_steps(
project_name, project_yaml_contents, dockerfile_lines, image_project,
base_images_project, build_config)
project_name, project_yaml_contents, dockerfile_lines, build_config)


def request_introspector_build(event, context):
Expand Down

0 comments on commit 28ba247

Please sign in to comment.