Skip to content

Commit 218339b

Browse files
authored
Fix disabled algorithm default (GoogleCloudPlatform#2012)
1 parent cd28d01 commit 218339b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v2/googlecloud-to-neo4j/src/main/java/com/google/cloud/teleport/v2/neo4j/templates/GoogleCloudToNeo4j.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public static void main(String[] args) {
219219
PipelineOptionsFactory.fromArgs(args).withValidation().as(Neo4jFlexTemplateOptions.class);
220220

221221
// Allow users to supply their own list of disabled algorithms if necessary
222-
if (StringUtils.isNotBlank(options.getDisabledAlgorithms())) {
222+
if (StringUtils.isBlank(options.getDisabledAlgorithms())) {
223223
options.setDisabledAlgorithms(
224224
"SSLv3, RC4, DES, MD5withRSA, DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon,"
225225
+ " NULL");

0 commit comments

Comments
 (0)