Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole00 committed Oct 20, 2023
1 parent 141b6a1 commit ad7cd2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class NebulaReader extends DataReader {
NebulaConnectionConfig
.builder()
.withMetaAddress(metaAddress)
.withConenctionRetry(2)
.withConnectionRetry(2)
.build()

val noColumn = weights.isEmpty
Expand Down Expand Up @@ -99,7 +99,7 @@ final class NebulaNgqlReader extends NebulaReader {
.builder()
.withMetaAddress(metaAddress)
.withGraphAddress(graphAddress)
.withConenctionRetry(2)
.withConnectionRetry(2)
.build()

var dataset: DataFrame = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class NebulaWriter extends AlgoWriter {
.builder()
.withMetaAddress(metaAddress)
.withGraphAddress(graphAddress)
.withConenctionRetry(2)
.withConnectionRetry(2)
.build()
val nebulaWriteVertexConfig = WriteNebulaVertexConfig
.builder()
Expand Down

0 comments on commit ad7cd2a

Please sign in to comment.