Skip to content

Commit b9560d3

Browse files
committed
Fix typo
1 parent 90664eb commit b9560d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/datastax/astra/migrate/DiffJobSession.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private DiffJobSession(CqlSession sourceSession, CqlSession astraSession, SparkC
5656
super(sourceSession, astraSession, sparkConf);
5757

5858
selectColTypes = getTypes(sparkConf.get("spark.migrate.diff.select.types"));
59-
autoCorrectMissing = Boolean.parseBoolean(sparkConf.get("spark.migrate.destination.autocorrect.mising", "false"));
59+
autoCorrectMissing = Boolean.parseBoolean(sparkConf.get("spark.migrate.destination.autocorrect.missing", "false"));
6060
autoCorrectMismatch = Boolean.parseBoolean(sparkConf.get("spark.migrate.destination.autocorrect.mismatch", "false"));
6161
}
6262

src/resources/sparkConf.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spark.migrate.destination.username client-id
1111
spark.migrate.destination.password client-secret
1212
spark.migrate.destination.read.consistency.level LOCAL_QUORUM
1313
spark.migrate.destination.keyspaceTable test.a2
14-
spark.migrate.destination.autocorrect.mising false
14+
spark.migrate.destination.autocorrect.missing false
1515
spark.migrate.destination.autocorrect.mismatch false
1616

1717
spark.migrate.maxRetries 10

0 commit comments

Comments
 (0)