summaryrefslogtreecommitdiff
path: root/lib/gitlab/downtime_check
Commit message (Collapse)AuthorAgeFilesLines
* Avoid calling freeze on already frozen strings in lib/gitlabdineshpanda2019-09-041-2/+2
|
* Enable even more frozen string in lib/gitlabgfyoung2018-11-061-3/+5
| | | | | | | | | | | | | | | | | Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
* Enable Style/MutableConstantDouwe Maan2017-02-231-2/+2
|
* Better formatting for downtime check messagesfix-downtime-check-formattingYorick Peterse2016-08-171-2/+13
| | | | | This removes excessive whitespace from the messages (e.g. leading whitespace) and ensures the message is more clearly visible.
* Fixed downtime check label colouringYorick Peterse2016-08-171-2/+2
| | | | | The colours were incorrect: offline was green and online was red, instead of the opposite.
* Added checks for migration downtimemigration-downtime-tagsYorick Peterse2016-07-201-0/+28
These new checks can be used to check if migrations require downtime or not (as tagged by their authors). In CI this compares the current branch with master so migrations added by merge requests are automatically verified. To check the migrations added since a Git reference simply run: bundle exec rake gitlab:db:downtime_check[GIT_REF]