diff --git a/service/mock/export/get_exports_with_limit.txt b/service/mock/export/get_exports_with_limit.txt index 60135a9..197e090 100644 --- a/service/mock/export/get_exports_with_limit.txt +++ b/service/mock/export/get_exports_with_limit.txt @@ -9,7 +9,7 @@ "case_preserving": true, "chown_restricted": false, "clients": [ - "10.110.25.198" + "1.2.3.4" ], "commit_asynchronous": false, "conflicting_paths": [], @@ -160,4 +160,4 @@ ], "resume": "1-1-MAAA1-MAAA1-NwAA1-MgAA1-MgAA0-1-MgAA2-aWQA1-NwAA32-N2EwNmVlNTAxMjhkMTA1ZmQ2ZDhhMzdmMGY3ZTFmYTMA1-MQAA", "total": 35 -} \ No newline at end of file +} diff --git a/service/mock/export/get_exports_with_resume.txt b/service/mock/export/get_exports_with_resume.txt index 225683e..4c0dbeb 100644 --- a/service/mock/export/get_exports_with_resume.txt +++ b/service/mock/export/get_exports_with_resume.txt @@ -87,7 +87,7 @@ "case_preserving": true, "chown_restricted": false, "clients": [ - "10.247.98.140" + "1.2.3.4" ], "commit_asynchronous": false, "conflicting_paths": [], @@ -161,4 +161,4 @@ ], "resume": "1-1-MAAA1-MAAA2-MTEA1-MgAA1-NAAA0-1-MgAA2-aWQA2-MTEA32-MjhkOGM0YTE4NDRmNzk1NDRhZjdkMzQ0YzdkNGM2M2YA1-MQAA", "total": 35 -} \ No newline at end of file +} diff --git a/service/step_defs_test.go b/service/step_defs_test.go index 35e922f..b2f4511 100644 --- a/service/step_defs_test.go +++ b/service/step_defs_test.go @@ -226,7 +226,7 @@ func (f *feature) getService() *service { svc.mode = "controller" f.service = svc f.service.nodeID, _ = os.Hostname() - f.service.nodeIP = "10.247.98.140" + f.service.nodeIP = "1.2.3.4" f.service.defaultIsiClusterName = clusterName1 f.service.isiClusters = new(sync.Map) f.service.isiClusters.Store(newConfig.ClusterName, &newConfig) @@ -2007,7 +2007,7 @@ func (f *feature) getServiceWithParamsForCustomTopology(user, mode string, apply f.service = svc f.service.nodeID = host // TODO - IP has to be updated before release - f.service.nodeIP = "10.247.98.140" + f.service.nodeIP = "1.2.3.5" f.service.defaultIsiClusterName = clusterName1 f.service.isiClusters = new(sync.Map) f.service.isiClusters.Store(newConfig.ClusterName, &newConfig) @@ -2047,7 +2047,7 @@ func (f *feature) getServiceWithParams(user, mode string) *service { svc.mode = mode f.service = svc f.service.nodeID, _ = os.Hostname() - f.service.nodeIP = "10.247.98.140" + f.service.nodeIP = "1.2.3.6" f.service.defaultIsiClusterName = clusterName1 f.service.isiClusters = new(sync.Map) f.service.isiClusters.Store(newConfig.ClusterName, &newConfig)