You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integration/gpexpand_not_running_test.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ var _ = Describe("gpexpand_sensor", func() {
41
41
}
42
42
}()
43
43
44
-
defertesthelper.ShouldPanicWithMessage(`[CRITICAL]:-Greenplum expansion currently in process. Once expansion is complete, it will be possible to restart gprestore, but please note existing backup sets taken with a different cluster configuration may no longer be compatible with the newly expanded cluster configuration`)
44
+
defertesthelper.ShouldPanicWithMessage(`[CRITICAL]:-CloudberryDB expansion currently in process. Once expansion is complete, it will be possible to restart gprestore, but please note existing backup sets taken with a different cluster configuration may no longer be compatible with the newly expanded cluster configuration`)
45
45
restore.DoSetup()
46
46
})
47
47
It("should prevent gprestore from starting when gpexpand is in phase 2", func() {
@@ -54,7 +54,7 @@ var _ = Describe("gpexpand_sensor", func() {
testhelper.AssertQueryRuns(postgresConn, "INSERT INTO gpexpand.status VALUES ('IN PROGRESS', now())")
56
56
57
-
defertesthelper.ShouldPanicWithMessage(`[CRITICAL]:-Greenplum expansion currently in process. Once expansion is complete, it will be possible to restart gprestore, but please note existing backup sets taken with a different cluster configuration may no longer be compatible with the newly expanded cluster configuration`)
57
+
defertesthelper.ShouldPanicWithMessage(`[CRITICAL]:-CloudberryDB expansion currently in process. Once expansion is complete, it will be possible to restart gprestore, but please note existing backup sets taken with a different cluster configuration may no longer be compatible with the newly expanded cluster configuration`)
58
58
restore.DoSetup()
59
59
})
60
60
It("should prevent gpbackup from starting when gpexpand is in phase 1", func() {
@@ -76,7 +76,7 @@ var _ = Describe("gpexpand_sensor", func() {
76
76
}
77
77
}()
78
78
79
-
defertesthelper.ShouldPanicWithMessage(`[CRITICAL]:-Greenplum expansion currently in process, please re-run gpbackup when the expansion has completed`)
79
+
defertesthelper.ShouldPanicWithMessage(`[CRITICAL]:-CloudberryDB expansion currently in process, please re-run gpbackup when the expansion has completed`)
80
80
backup.DoSetup()
81
81
})
82
82
It("should prevent gpbackup from starting when gpexpand is in phase 2", func() {
@@ -89,7 +89,7 @@ var _ = Describe("gpexpand_sensor", func() {
testhelper.AssertQueryRuns(postgresConn, "INSERT INTO gpexpand.status VALUES ('IN PROGRESS', now())")
91
91
92
-
defertesthelper.ShouldPanicWithMessage(`[CRITICAL]:-Greenplum expansion currently in process, please re-run gpbackup when the expansion has completed`)
92
+
defertesthelper.ShouldPanicWithMessage(`[CRITICAL]:-CloudberryDB expansion currently in process, please re-run gpbackup when the expansion has completed`)
Copy file name to clipboardExpand all lines: utils/gpexpand_sensor.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,9 @@ import (
12
12
)
13
13
14
14
const (
15
-
BackupPreventedByGpexpandMessageGpexpandFailureMessage=`Greenplum expansion currently in process, please re-run gpbackup when the expansion has completed`
15
+
BackupPreventedByGpexpandMessageGpexpandFailureMessage=`CloudberryDB expansion currently in process, please re-run gpbackup when the expansion has completed`
16
16
17
-
RestorePreventedByGpexpandMessageGpexpandFailureMessage=`Greenplum expansion currently in process. Once expansion is complete, it will be possible to restart gprestore, but please note existing backup sets taken with a different cluster configuration may no longer be compatible with the newly expanded cluster configuration`
17
+
RestorePreventedByGpexpandMessageGpexpandFailureMessage=`CloudberryDB expansion currently in process. Once expansion is complete, it will be possible to restart gprestore, but please note existing backup sets taken with a different cluster configuration may no longer be compatible with the newly expanded cluster configuration`
18
18
19
19
CoordinatorDataDirQuery=`select datadir from gp_segment_configuration where content=-1 and role='p'`
20
20
GpexpandTemporaryTableStatusQuery=`SELECT status FROM gpexpand.status ORDER BY updated DESC LIMIT 1`
0 commit comments