Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Liu <jliu@gitlab.com>2024-01-10 05:18:57 +0300
committerJames Liu <jliu@gitlab.com>2024-01-17 01:13:13 +0300
commit9195adfc06551f312c04b2f21f82c8c3658b9f3c (patch)
treee998793a44a3b0263974eb84286b0dfba4dbcb3a
parente1f6da778cae5991314762474607b5bf3b228a9a (diff)
backup: Remove test exceptions for WAL
Now that backups no longer invoke the RemoveAll RPC, we can remove the exemption for these tests when the WAL is enabled.
-rw-r--r--internal/cli/gitalybackup/restore_test.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/internal/cli/gitalybackup/restore_test.go b/internal/cli/gitalybackup/restore_test.go
index 033420d8f..4b1eee9aa 100644
--- a/internal/cli/gitalybackup/restore_test.go
+++ b/internal/cli/gitalybackup/restore_test.go
@@ -26,13 +26,6 @@ import (
func TestRestoreSubcommand(t *testing.T) {
gittest.SkipWithSHA256(t)
- testhelper.SkipWithWAL(t, `
-RemoveAll is removing the entire content of the storage. This would also remove the database's and
-the transaction manager's disk state. The RPC needs to be updated to shut down all partitions and
-the database and only then perform the removal.
-
-Issue: https://gitlab.com/gitlab-org/gitaly/-/issues/5269`)
-
ctx := testhelper.Context(t)
cfg := testcfg.Build(t)
@@ -122,13 +115,6 @@ Issue: https://gitlab.com/gitlab-org/gitaly/-/issues/5269`)
func TestRestoreSubcommand_serverSide(t *testing.T) {
gittest.SkipWithSHA256(t)
- testhelper.SkipWithWAL(t, `
-RemoveAll is removing the entire content of the storage. This would also remove the database's and
-the transaction manager's disk state. The RPC needs to be updated to shut down all partitions and
-the database and only then perform the removal.
-
-Issue: https://gitlab.com/gitlab-org/gitaly/-/issues/5269`)
-
ctx := testhelper.Context(t)
backupDir := testhelper.TempDir(t)