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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-07-04 09:08:44 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-04 09:08:44 +0300
commit18160560396d57c07a9525eb033e66afb1f07674 (patch)
tree65490c7939366003c0626f6dfa3538285a1cf1fe /doc/administration/backup_restore
parent83315ad1b32b92f96cbf57bbaf623c782f5b08da (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/administration/backup_restore')
-rw-r--r--doc/administration/backup_restore/backup_gitlab.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/administration/backup_restore/backup_gitlab.md b/doc/administration/backup_restore/backup_gitlab.md
index a2d77fcf33d..9133875ac34 100644
--- a/doc/administration/backup_restore/backup_gitlab.md
+++ b/doc/administration/backup_restore/backup_gitlab.md
@@ -1519,8 +1519,8 @@ lost data can be manually replaced.
#### Fix integrations and webhooks
-If you've lost your secrets, the [integrations settings pages](../../user/project/integrations/index.md)
-and [webhooks settings pages](../../user/project/integrations/webhooks.md) are probably displaying `500` error messages.
+If you've lost your secrets, the [integrations settings](../../user/project/integrations/index.md)
+and [webhooks settings](../../user/project/integrations/webhooks.md) pages might display `500` error messages. Lost secrets might also produce `500` errors when you try to access a repository in a project with a previously configured integration or webhook.
The fix is to truncate the affected tables (those containing encrypted columns).
This deletes all your configured integrations, webhooks, and related metadata.
@@ -1556,7 +1556,7 @@ You should verify that the secrets are the root cause before deleting any data.
```sql
-- truncate web_hooks table
- TRUNCATE integrations, chat_names, issue_tracker_data, jira_tracker_data, slack_integrations, web_hooks, zentao_tracker_data, web_hook_logs;
+ TRUNCATE integrations, chat_names, issue_tracker_data, jira_tracker_data, slack_integrations, web_hooks, zentao_tracker_data, web_hook_logs CASCADE;
```
### Container Registry push failures after restoring from a backup