Skip to content

Commit

Permalink
Use HOST_JOB_SELECTION instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
letitz committed Feb 5, 2025
1 parent 74a8383 commit f76797a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/base/setup_clusterfuzz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ if [ -z "$DEPLOYMENT_BUCKET" ]; then
export DEPLOYMENT_BUCKET=$(curl -H "Metadata-Flavor: Google" http://metadata.google.internal/computeMetadata/v1/project/attributes/deployment-bucket)
fi

if [ -z "$COMMAND_OVERRIDE" ]; then
# Get command override from instance metadata, if any.
export COMMAND_OVERRIDE=$(curl -H "Metadata-Flavor: Google" http://metadata.google.internal/computeMetadata/v1/instance/attributes/command-override || true)
if [ -z "$HOST_JOB_SELECTION" ]; then
# Get list of jobs to focus on from instance metadata, if any.
export HOST_JOB_SELECTION=$(curl -H "Metadata-Flavor: Google" http://metadata.google.internal/computeMetadata/v1/instance/attributes/host-job-selection || true)
fi

CLUSTERFUZZ_FILE=clusterfuzz_package.zip
Expand Down

0 comments on commit f76797a

Please sign in to comment.