diff options
| author | Andreas Brandl <abrandl@gitlab.com> | 2019-07-24 15:59:55 +0200 |
|---|---|---|
| committer | Andreas Brandl <abrandl@gitlab.com> | 2019-07-29 12:47:06 +0200 |
| commit | 988dc80585c6e52970e94f22dff6bc1e4c786e9e (patch) | |
| tree | fa46a90181e23ec86c5e25288e5b83451ce5b27f /lib/tasks | |
| parent | ca05130319ae9d74ee7771b5a8adb6cf25857fb7 (diff) | |
| download | gitlab-ce-988dc80585c6e52970e94f22dff6bc1e4c786e9e.tar.gz | |
Further remove code branches by database type
We dropped MySQL support and a lot of mysql specific code has been
removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29608.
This comes in from the other direction and removes any `if postgresql?`
branches.
Diffstat (limited to 'lib/tasks')
| -rw-r--r-- | lib/tasks/gitlab/setup.rake | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/tasks/gitlab/setup.rake b/lib/tasks/gitlab/setup.rake index e763de682f8..5d86d6e466c 100644 --- a/lib/tasks/gitlab/setup.rake +++ b/lib/tasks/gitlab/setup.rake @@ -45,8 +45,6 @@ namespace :gitlab do # method terminates all the connections so that a subsequent DROP # will work. def self.terminate_all_connections - return false unless Gitlab::Database.postgresql? - cmd = <<~SQL SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity |
