change env dir

This commit is contained in:
inovindasari 2025-08-25 16:42:04 +02:00
parent 9a83199ffe
commit 8c9905c3ea
1 changed files with 2 additions and 2 deletions

View File

@ -715,7 +715,7 @@ func TestSyncStandbyClusterConfiguration(t *testing.T) {
mockClient.EXPECT().Get(gomock.Any()).Return(&response, nil).AnyTimes() mockClient.EXPECT().Get(gomock.Any()).Return(&response, nil).AnyTimes()
// mocking a config after setConfig is called // mocking a config after setConfig is called
standbyJson := `{"standby_cluster":{"create_replica_methods":["bootstrap_standby_with_walg","basebackup_fast_xlog"],"restore_command":"envdir \"/run/etc/wal-g.d/env-standby\" /scripts/restore_command.sh \"%f\" \"%p\""}}` standbyJson := `{"standby_cluster":{"create_replica_methods":["bootstrap_standby_with_walg","basebackup_fast_xlog"],"restore_command":"envdir \"/run/etc/wal-e.d/env-standby\" /scripts/restore_command.sh \"%f\" \"%p\""}}`
r = io.NopCloser(bytes.NewReader([]byte(standbyJson))) r = io.NopCloser(bytes.NewReader([]byte(standbyJson)))
response = http.Response{ response = http.Response{
StatusCode: 200, StatusCode: 200,
@ -757,7 +757,7 @@ func TestSyncStandbyClusterConfiguration(t *testing.T) {
err = cluster.syncStandbyClusterConfiguration() err = cluster.syncStandbyClusterConfiguration()
assert.NoError(t, err) assert.NoError(t, err)
configJson = `{"standby_cluster":{"create_replica_methods":["bootstrap_standby_with_walg","basebackup_fast_xlog"],"restore_command":"envdir \"/run/etc/wal-g.d/env-standby\" /scripts/restore_command.sh \"%f\" \"%p\""}, "ttl": 20}` configJson = `{"standby_cluster":{"create_replica_methods":["bootstrap_standby_with_walg","basebackup_fast_xlog"],"restore_command":"envdir \"/run/etc/wal-e.d/env-standby\" /scripts/restore_command.sh \"%f\" \"%p\""}, "ttl": 20}`
r = io.NopCloser(bytes.NewReader([]byte(configJson))) r = io.NopCloser(bytes.NewReader([]byte(configJson)))
response = http.Response{ response = http.Response{
StatusCode: 200, StatusCode: 200,