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 8f452f3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object AlgoPerformanceTest {
.builder()
.withMetaAddress("127.0.0.0.1:9559")
.withTimeout(6000)
.withConenctionRetry(2)
.withConnectionRetry(2)
.build()
val nebulaReadEdgeConfig: ReadNebulaConfig = ReadNebulaConfig
.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ object DeepQueryTest {
.builder()
.withMetaAddress("192.168.15.5:9559")
.withTimeout(6000)
.withConenctionRetry(2)
.withConnectionRetry(2)
.build()
val nebulaReadEdgeConfig: ReadNebulaConfig = ReadNebulaConfig
.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ object ReadData {
.builder()
.withMetaAddress("127.0.0.1:9559")
.withTimeout(6000)
.withConenctionRetry(2)
.withConnectionRetry(2)
.build()
val nebulaReadEdgeConfig: ReadNebulaConfig = ReadNebulaConfig
.builder()
Expand Down
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 8f452f3

Please sign in to comment.