Commit 37840bdd authored by Douwe Maan's avatar Douwe Maan

Manually correct autocorrect

parent d3672f98
......@@ -14,7 +14,7 @@ class PruneOldEventsWorker
'created_at < ?',
(12.months + 1.day).ago)
.select(:id)
.limit(10_000))
.delete_all
.limit(10_000)
).delete_all
end
end
......@@ -21,6 +21,7 @@ class Settings < Settingslogic
else
":#{gitlab.port}"
end
[
gitlab.protocol,
"://",
......@@ -108,6 +109,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