File tree 1 file changed +1
-6
lines changed
runners/google-cloud-dataflow-java/src/main/java/org/apache/beam/runners/dataflow
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,6 @@ public final class DataflowRunnerInfo extends ReleaseInfo {
34
34
35
35
private static final String APACHE_BEAM_DISTRIBUTION_PROPERTIES_PATH =
36
36
"/org/apache/beam/runners/dataflow/dataflow.properties" ;
37
- private static final String DATAFLOW_DISTRIBUTION_PROPERTIES_PATH =
38
- "/org/apache/beam/runners/dataflow/dataflow-distribution.properties" ;
39
37
private static final String FNAPI_ENVIRONMENT_MAJOR_VERSION_KEY =
40
38
"fnapi.environment.major.version" ;
41
39
private static final String LEGACY_ENVIRONMENT_MAJOR_VERSION_KEY =
@@ -48,10 +46,7 @@ private static class LazyInit {
48
46
static {
49
47
Properties properties ;
50
48
try {
51
- properties = load (DATAFLOW_DISTRIBUTION_PROPERTIES_PATH );
52
- if (properties == null ) {
53
- properties = load (APACHE_BEAM_DISTRIBUTION_PROPERTIES_PATH );
54
- }
49
+ properties = load (APACHE_BEAM_DISTRIBUTION_PROPERTIES_PATH );
55
50
if (properties == null ) {
56
51
// Print a warning if we can not load either the Dataflow distribution properties
57
52
// or the
You can’t perform that action at this time.
0 commit comments