Commit 0beba025 authored by Douwe Maan's avatar Douwe Maan

Manually correct autocorrect

parent b3ff48c9
......@@ -12,7 +12,7 @@ class PruneOldEventsWorker
'created_at < ?',
(12.months + 1.day).ago)
.select(:id)
.limit(10_000))
.delete_all
.limit(10_000)
).delete_all
end
end
......@@ -20,6 +20,7 @@ class Settings < Settingslogic
else
":#{gitlab.port}"
end
[
gitlab.protocol,
"://",
......@@ -82,6 +83,7 @@ class Settings < Settingslogic
def base_url(config)
custom_port = on_standard_port?(config) ? nil : ":#{config.port}"
[
config.protocol,
"://",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment