Skip to content

Commit

Permalink
Merge pull request #1043 from gursewak1997/stream-check-fix
Browse files Browse the repository at this point in the history
garbage-collection: keep `container_env` as empty map
  • Loading branch information
gursewak1997 authored Sep 27, 2024
2 parents 8b4e0de + 8c5be80 commit ef8b888
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jobs/garbage-collection.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ properties([

def build_description = "[${params.STREAM}]"
def cosa_img = 'quay.io/coreos-assembler/coreos-assembler:main'
def container_env = pipeutils.get_env_vars_for_stream(pipecfg, params.STREAM)
// def container_env = pipeutils.get_env_vars_for_stream(pipecfg, params.STREAM)
// Let's keep container_env as empty map temporarily to prune on disabled streams
def container_env = [:]
def s3_stream_dir = pipeutils.get_s3_streams_dir(pipecfg, params.STREAM)
def dry_run = params.DRY_RUN ? "--dry-run" : ""

Expand Down

0 comments on commit ef8b888

Please sign in to comment.