File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed
it/google-cloud-platform/src/main/java/org/apache/beam/it/gcp Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 33
33
HARNESS_IMAGE : ${{ inputs.unifiedWorkerHarnessContainerImage }}
34
34
- name : Checkout code
35
35
uses : actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4.0.0
36
- with :
37
- fetch-depth : 0
38
- ref : ${{ steps.variables.outputs.releaseTag }}
39
- # token: ${{ secrets.RELEASE_TOKEN }}
36
+ # with:
37
+ # fetch-depth: 0
38
+ # ref: ${{ steps.variables.outputs.releaseTag }}
40
39
- name : Setup Environment
41
40
id : setup-env
42
41
uses : ./.github/actions/setup-env
Original file line number Diff line number Diff line change @@ -499,13 +499,11 @@ protected LaunchInfo launchTemplate(
499
499
options .addParameter ("sdkContainerImage" , System .getProperty ("sdkContainerImage" ));
500
500
}
501
501
if (unifiedWorkerHarnessContainerImage != null ) {
502
- appendExperiment (
503
- options ,
504
- "runner_harness_container_image="
505
- + System .getProperty ("unifiedWorkerHarnessContainerImage" ));
502
+ options .addParameter (
503
+ "runner_harness_container_image" ,
504
+ System .getProperty ("unifiedWorkerHarnessContainerImage" ));
506
505
}
507
- if (System .getProperty ("uwStagingExperiments" ) != null
508
- || unifiedWorkerHarnessContainerImage != null ) {
506
+ if (System .getProperty ("uwStagingExperiments" ) != null ) {
509
507
appendExperiment (options , "disable_worker_rolling_upgrade" );
510
508
appendExperiment (options , "use_beam_bq_sink" );
511
509
appendExperiment (options , "beam_fn_api" );
You can’t perform that action at this time.
0 commit comments