Error 500 on every project page after upgrade to latest (8.14.4) on docker
Summary
After updating to the latest official docker image, every project page give a 500 error. The upgrade didn't show any errors.
Relevant logs and/or screenshots
Here is the log output describing the error:
ActionView::Template::Error (undefined method `repository_size' for #<Project:0x007f70aec59a88>
Did you mean? repository):
17: %ul.nav
18: %li
19: = link_to project_files_path(@project) do
20: Files (#{repository_size})
21: %li
22: = link_to namespace_project_commits_path(@project.namespace, @project, current_ref) do
23: #{'Commit'.pluralize(@project.commit_count)} (#{number_with_delimiter(@project.commit_count)})
app/helpers/projects_helper.rb:250:in `repository_size'
app/views/projects/show.html.haml:20:in `block in _app_views_projects_show_html_haml___5967468932486729_70060970957920'
app/views/projects/show.html.haml:19:in `_app_views_projects_show_html_haml___5967468932486729_70060970957920'
lib/gitlab/request_profiler/middleware.rb:15:in `call'
lib/gitlab/middleware/go.rb:16:in `call'
Major problem?
Here is the structure of the public.projects table, repository_size doesn't exist (neither does commit_count or builds_enabled):
root@gitlab:/etc/gitlab# gitlab-rails dbconsole
psql (9.2.18)
Type "help" for help.
gitlabhq_production=> \d+ projects
Table "public.projects"
Column | Type | Modifiers | Storage | Stats target | Description
--------------------------------------------------+-----------------------------+-------------------------------------------------------+----------+--------------+-------------
id | integer | not null default nextval('projects_id_seq'::regclass) | plain | |
name | character varying | | extended | |
path | character varying | | extended | |
description | text | | extended | |
created_at | timestamp without time zone | | plain | |
updated_at | timestamp without time zone | | plain | |
creator_id | integer | | plain | |
namespace_id | integer | | plain | |
last_activity_at | timestamp without time zone | | plain | |
import_url | character varying | | extended | |
visibility_level | integer | not null default 0 | plain | |
archived | boolean | not null default false | plain | |
avatar | character varying | | extended | |
import_status | character varying | | extended | |
star_count | integer | not null default 0 | plain | |
import_type | character varying | | extended | |
import_source | character varying | | extended | |
import_error | text | | extended | |
ci_id | integer | | plain | |
shared_runners_enabled | boolean | not null default true | plain | |
runners_token | character varying | | extended | |
build_coverage_regex | character varying | | extended | |
build_allow_git_fetch | boolean | not null default true | plain | |
build_timeout | integer | not null default 3600 | plain | |
pending_delete | boolean | default false | plain | |
public_builds | boolean | not null default true | plain | |
last_repository_check_failed | boolean | | plain | |
last_repository_check_at | timestamp without time zone | | plain | |
container_registry_enabled | boolean | | plain | |
only_allow_merge_if_build_succeeds | boolean | not null default false | plain | |
has_external_issue_tracker | boolean | | plain | |
repository_storage | character varying | not null default 'default'::character varying | extended | |
request_access_enabled | boolean | not null default false | plain | |
has_external_wiki | boolean | | plain | |
lfs_enabled | boolean | | plain | |
description_html | text | | extended | |
only_allow_merge_if_all_discussions_are_resolved | boolean | | plain | |
Indexes:
"projects_pkey" PRIMARY KEY, btree (id)
"index_projects_on_ci_id" btree (ci_id)
"index_projects_on_created_at" btree (created_at)
"index_projects_on_creator_id" btree (creator_id)
"index_projects_on_description_trigram" gin (description gin_trgm_ops)
"index_projects_on_last_activity_at" btree (last_activity_at)
"index_projects_on_last_repository_check_failed" btree (last_repository_check_failed)
"index_projects_on_name_trigram" gin (name gin_trgm_ops)
"index_projects_on_namespace_id" btree (namespace_id)
"index_projects_on_path" btree (path)
"index_projects_on_path_trigram" gin (path gin_trgm_ops)
"index_projects_on_pending_delete" btree (pending_delete)
"index_projects_on_runners_token" btree (runners_token)
"index_projects_on_star_count" btree (star_count)
"index_projects_on_visibility_level" btree (visibility_level)
Referenced by:
TABLE "trending_projects" CONSTRAINT "fk_rails_09feecd872" FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE
TABLE "project_authorizations" CONSTRAINT "fk_rails_0f84bb11f3" FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE
TABLE "project_statistics" CONSTRAINT "fk_rails_12c471002f" FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE
TABLE "subscriptions" CONSTRAINT "fk_rails_d0c8bda804" FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE
TABLE "label_priorities" CONSTRAINT "fk_rails_ef916d14fa" FOREIGN KEY (project_id) REFERENCES projects(id) ON DELETE CASCADE
TABLE "boards" CONSTRAINT "fk_rails_f15266b5f9" FOREIGN KEY (project_id) REFERENCES projects(id)
Has OIDs: no
Output of checks
Results of GitLab environment info
root@gitlab:/etc/gitlab# gitlab-rake gitlab:env:info
System information
System:
Current User: git
Using RVM: no
Ruby Version: 2.3.1p112
Gem Version: 2.6.6
Bundler Version:1.13.6
Rake Version: 10.5.0
Sidekiq Version:4.2.1
GitLab information
Version: 8.14.4
Revision: 3ea6c8d
Directory: /opt/gitlab/embedded/service/gitlab-rails
DB Adapter: postgresql
URL: https://gitlab.scriberule.tech
HTTP Clone URL: https://gitlab.scriberule.tech/some-group/some-project.git
SSH Clone URL: git@gitlab.scriberule.tech:some-group/some-project.git
Using LDAP: no
Using Omniauth: no
GitLab Shell
Version: 4.0.3
Repository storage paths:
- default: /var/opt/gitlab/git-data/repositories
Hooks: /opt/gitlab/embedded/service/gitlab-shell/hooks/
Git: /opt/gitlab/embedded/bin/git
Results of migration check
root@gitlab:/etc/gitlab# gitlab-rake db:migrate:status
database: gitlabhq_production
Status Migration ID Migration Name
--------------------------------------------------
up 20121220064453 Init schema
up 20130102143055 Rename owner to creator for project
up 20130110172407 Add public to project
up 20130123114545 Add issues tracker to project
up 20130125090214 Add user permissions
up 20130131070232 Remove private flag from project
up 20130206084024 Add description to namsespace
up 20130207104426 Add description to teams
up 20130211085435 Add issues tracker id to project
up 20130214154045 Rename state to merge status in milestone
up 20130218140952 Add state to issue
up 20130218141038 Add state to merge request
up 20130218141117 Add state to milestone
up 20130218141258 Convert closed to state in issue
up 20130218141327 Convert closed to state in merge request
up 20130218141344 Convert closed to state in milestone
up 20130218141444 Remove merged from merge request
up 20130218141507 Remove closed from issue
up 20130218141536 Remove closed from merge request
up 20130218141554 Remove closed from milestone
up 20130220124204 Add new merge status to merge request
up 20130220125544 Convert merge status in merge request
up 20130220125545 Remove merge status from merge request
up 20130220133245 Rename new merge status to merge status in milestone
up 20130304104623 Add state to user
up 20130304104740 Convert blocked to state
up 20130304105317 Remove blocked from user
up 20130315124931 User color scheme
up 20130318212250 Add snippets to features
up 20130319214458 Create forked project links
up 20130323174317 Add private to snippets
up 20130324151736 Add type to snippets
up 20130324172327 Change project id to null in snipepts
up 20130324203535 Add type value for snippets
up 20130325173941 Add notification level to user
up 20130326142630 Add index to users authentication token
up 20130403003950 Add last activity column into project
up 20130404164628 Add notification level to user project
up 20130410175022 Remove wiki table
up 20130419190306 Allow merges for forks
up 20130506085413 Add type to key
up 20130506090604 Create deploy keys projects
up 20130506095501 Remove project id from key
up 20130522141856 Add more fields to service
up 20130528184641 Add system to notes
up 20130611210815 Increase snippet text column size
up 20130613165816 Add password expires at to users
up 20130613173246 Add created by id to user
up 20130614132337 Add improted to project
up 20130617095603 Create users groups
up 20130621195223 Add notification level to user group
up 20130622115340 Add more db index
up 20130624162710 Add fingerprint to key
up 20130711063759 Create project group links
up 20130804151314 Add st diff to note
up 20130809124851 Add permission check to user
up 20130812143708 Add import url to project
up 20130819182730 Add internal ids to issues and mr
up 20130820102832 Add access to project group link
up 20130821090530 Remove deprecated tables
up 20130821090531 Add internal ids to milestones
up 20130909132950 Add description to merge request
up 20130926081215 Change owner id for group
up 20131005191208 Add avatar to users
up 20131009115346 Add confirmable to users
up 20131106151520 Remove default branch
up 20131112114325 Create broadcast messages
up 20131112220935 Add visibility level to projects
up 20131129154016 Add archived to projects
up 20131130165425 Add color and font to broadcast messages
up 20131202192556 Add event fields for web hook
up 20131214224427 Add hide no ssh key to users
up 20131217102743 Add recipients to service
up 20140116231608 Add website url to users
up 20140122112253 Create merge request diffs
up 20140122114406 Migrate mr diffs
up 20140122122549 Remove m rdiff fields
up 20140125162722 Add avatar to projects
up 20140127170938 Add group avatars
up 20140209025651 Create emails
up 20140214102325 Add api key to services
up 20140304005354 Add index merge request diffs on merge request
up 20140305193308 Add tag push hooks to project hook
up 20140312145357 Add import status to project
up 20140313092127 Migrate already imported projects
up 20140407135544 Fix namespaces
up 20140414131055 Change state to allow empty merge request diffs
up 20140415124820 Limits to mysql
up 20140416074002 Add index on iid
up 20140416185734 Index on current sign in at
up 20140428105831 Add notes index updated at
up 20140502115131 Add repo size to db
up 20140502125220 Migrate repo size
up 20140611135229 Add position to merge request
up 20140625115202 Create users star projects
up 20140729134820 Create labels
up 20140729140420 Create label links
up 20140729145339 Migrate project tags
up 20140729152420 Migrate taggable labels
up 20140730111702 Add index to labels
up 20140903115954 Migrate to new shell
up 20140907220153 Serialize service properties
up 20140914113604 Add members table
up 20140914145549 Migrate to new members model
up 20140914173417 Remove old member tables
up 20141006143943 Move slack service to webhook
up 20141007100818 Add visibility level to snippet
up 20141118150935 Add audit event
up 20141121133009 Add timestamps to members
up 20141121161704 Add identity table
up 20141205134006 Add locked at to merge request
up 20141216155758 Create doorkeeper tables
up 20141217125223 Add owner to application
up 20141223135007 Add import data to project table
up 20141226080412 Add developers can push to protected branches
up 20150108073740 Create application settings
up 20150116234544 Add home page url for application settings
up 20150116234545 Add gitlab access token to user
up 20150125163100 Add default branch protection setting
up 20150205211843 Add timestamps to identities
up 20150206181414 Add index to created at
up 20150206222854 Add notification email to user
up 20150209222013 Add missing index
up 20150211172122 Add template to service
up 20150211174341 Allow null in services project
up 20150213104043 Add twitter sharing enabled to application settings
up 20150213114800 Add hide no password to user
up 20150213121042 Add password automatically set to user
up 20150217123345 Add bitbucket access token and secret to user
up 20150219004514 Add events to services
up 20150223022001 Set missing last activity at
up 20150225065047 Add note events to services
up 20150301014758 Add restricted visibility levels to application settings
up 20150306023106 Fix namespace duplication
up 20150306023112 Add unique index to namespace
up 20150310194358 Add version check to application settings
up 20150313012111 Create subscriptions table
up 20150320234437 Add location to user
up 20150324155957 Set incorrect assignee id to null
up 20150327122227 Add public to key
up 20150327150017 Add import data to project
up 20150327223628 Add devise two factor to users
up 20150328132231 Add max attachment size to application settings
up 20150331183602 Add devise two factor backupable to users
up 20150406133311 Add invite data to member
up 20150411000035 Fix identities
up 20150411180045 Rename buildbox service
up 20150413192223 Add public email to users
up 20150417121913 Create project import data
up 20150417122318 Remove import data from project
up 20150421120000 Remove periods at ends of usernames
up 20150423033240 Add default project visibililty to application settings
up 20150425164646 Gitlab change collation for tag names.acts as taggable on engine
up 20150425164647 Remove duplicate tags
up 20150425164648 Add missing unique indices.acts as taggable on engine
up 20150425164649 Add taggings counter cache to tags.acts as taggable on engine
up 20150425164650 Add missing taggable index.acts as taggable on engine
up 20150425164651 Change collation for tag names.acts as taggable on engine
up 20150425173433 Add default snippet visibility to app settings
up 20150429002313 Remove abandoned group members records
up 20150502064022 Add restricted signup domains to application settings
up 20150509180749 Convert legacy reference notes
up 20150516060434 Add note events to web hooks
up 20150529111607 Add user oauth applications to application settings
up 20150529150354 Add after sign out path for application settings
up 20150609141121 Add session expire delay for application settings
up 20150610065936 Add dashboard to users
up 20150620233230 Add default otp required for login value
up 20150713160110 Add project view to users
up 20150717130904 Add commits count to project
up 20150730122406 Add updated by to issuables and notes
up 20150806104937 Create abuse reports
up 20150812080800 Add settings import sources
up 20150814065925 Remove oauth tokens from users
up 20150817163600 Deduplicate user identities
up 20150818213832 Add sent notifications
up 20150824002011 Add enable ssl verification
up 20150826001931 Add ci tables
up 20150902001023 Add template to label
up 20150914215247 Add ci tags
up 20150915001905 Enable ssl verification by default
up 20150916000405 Enable ssl verification for web hooks
up 20150916114643 Add help page text to application settings
up 20150916145038 Add index for committed at and
up 20150918084513 Add ci enabled to application settings
up 20150918161719 Remove invalid milestones from merge requests
up 20150920010715 Add consumed timestep to users
up 20150920161119 Add line code to sent notification
up 20150924125150 Add project id to ci commit
up 20150924125436 Migrate project id for ci commits
up 20150930001110 Merge request error field
up 20150930095736 Add null to name for ci projects
up 20150930110012 Add group share lock
up 20151002112914 Add stage idx to builds
up 20151002121400 Add index for builds
up 20151002122929 Add ref and tag to builds
up 20151002122943 Migrate ref and tag to build
up 20151005075649 Add user id to build
up 20151005150751 Add layout option for users
up 20151005162154 Remove ci enabled from application settings
up 20151007120511 Namespaces projects path lower indexes
up 20151008110232 Add users lower username email indexes
up 20151008123042 Add type and description to builds
up 20151008130321 Migrate name to description for builds
up 20151008143519 Add admin notification email setting
up 20151012173029 Set jira service api url
up 20151013092124 Add artifacts file to builds
up 20151016131433 Add ci projects gl project id index
up 20151016195451 Add ci builds and projects indexes
up 20151016195706 Add notes line code index
up 20151019111551 Fix build tags
up 20151019111703 Fail build without names
up 20151020145526 Add services template index
up 20151020173516 Ci limits to mysql
up 20151020173906 Add ci builds index for status
up 20151023112551 Fail build with empty name
up 20151023144219 Remove satellites
up 20151026182941 Add project path index
up 20151028152939 Add merge when build succeeds to merge request
up 20151103001141 Add public to group
up 20151103133339 Add shared runners setting
up 20151103134857 Create lfs objects
up 20151103134958 Create lfs objects projects
up 20151104105513 Add file to lfs objects
up 20151105094515 Create releases
up 20151106000015 Add is award to notes
up 20151109100728 Add max artifacts size to application settings
up 20151109134526 Add issues state index
up 20151109134916 Add projects visibility level index
up 20151110125604 Add import error to project
up 20151114113410 Add index for lfs oid and size
up 20151116144118 Add unique for lfs oid index
up 20151118162244 Add projects public index
up 20151201203948 Raise hook url limit
up 20151203162133 Add hide project limit to users
up 20151203162134 Add build events to services
up 20151209144329 Migrate ci web hooks
up 20151209145909 Migrate ci emails
up 20151210030143 Add unlock token to user
up 20151210072243 Add runners registration token to application settings
up 20151210125232 Migrate ci slack service
up 20151210125927 Migrate ci hip chat service
up 20151210125928 Add ci to project
up 20151210125929 Add project id to ci
up 20151210125930 Migrate ci to project
up 20151210125931 Add index to ci tables
up 20151210125932 Drop null for ci tables
up 20151215132013 ********** NO FILE **********
up 20151218154042 Add tfa to application settings
up 20151221234414 Add tfa additional fields
up 20151224123230 Rename emojis
up 20151228111122 Remove public from namespace
up 20151228150906 Influxdb settings
up 20151228175719 Add recaptcha to application settings
up 20151229102248 Influxdb udp port setting
up 20151229112614 Influxdb remote database setting
up 20151230132518 Add artifacts metadata to ci build
up 20151231152326 Add akismet to application settings
up 20151231202530 Remove alert type from broadcast messages
up 20160106162223 Add index milestones title
up 20160106164438 Remove influxdb credentials
up 20160109054846 Create spam logs
up 20160113111034 Add metrics sample interval
up 20160118155830 Add sentry to application settings
up 20160118232755 Add ip blocking settings to application settings
up 20160119111158 Add services category
up 20160119112418 Add services default
up 20160119145451 Add ldap email to users
up 20160120172143 Add base commit sha to merge request diffs
up 20160121030729 Add email author in body to application settings
up 20160122185421 Add pending delete to project
up 20160128212447 Remove ip blocking settings from application settings
up 20160128233227 Change lfs objects size column
up 20160129135155 Remove dot atom path ending of projects
up 20160129155512 Add merge commit sha to merge requests
up 20160202091601 Add erasable to ci build
up 20160202164642 Add allow guest to access builds project
up 20160204144558 Add real size to merge request diffs
up 20160209130428 Add index to snippet
up 20160210105555 ********** NO FILE **********
up 20160212123307 Create tasks
up 20160217100506 Add description to label
up 20160217174422 Add note to tasks
up 20160220123949 Rename tasks to todos
up 20160222153918 Create appearances ce
up 20160223192159 Add confidential to issues
up 20160225090018 Add delete at to issues
up 20160225101956 Add delete at to merge requests
up 20160226114608 Add trigram indexes for searching
up 20160227120001 Add event field for web hook
up 20160227120047 Add event to services
up 20160229193553 Add main language to repository
up 20160301124843 Add visibility level to groups
up 20160302151724 Add import credentials to project import data
up 20160302152808 Remove wrong import url from projects
up 20160305220806 Remove expires at from snippets
up 20160307221555 Disallow blank line code on note
up 20160308212903 Add default group visibility to application settings
up 20160309140734 Fix todos
up 20160310124959 Add due date to issues
up 20160310185910 Add external flag to users
up 20160314094147 Add priority to label
up 20160314114439 Add requested at to members
up 20160314143402 Projects add pushes since gc
up 20160315135439 Project add repository check
up 20160316123110 Ci runners token index
up 20160316192622 Change target id to null on todos
up 20160316204731 Add commit id to todos
up 20160317092222 Add moved to to issue
up 20160320204112 Index namespaces on visibility level
up 20160324020319 Remove todos for deleted issues
up 20160328112808 Create notification settings
up 20160328115649 Migrate new notification setting
up 20160328121138 Add notification setting index
up 20160329144452 Add index on pending delete projects
up 20160331133914 Remove todos for deleted merge requests
up 20160331223143 Remove twitter sharing enabled from application settings
up 20160407120251 Add images enabled for project
up 20160412140240 Add repository checks enabled setting
up 20160412173416 Add fields to ci commit
up 20160412173417 Update ci commit
up 20160412173418 Add ci commit indexes
up 20160413115152 Add token to web hooks
up 20160415062917 Create personal access tokens
up 20160415133440 Add shared runners text to application settings
up 20160416180807 Add award emoji
up 20160416182152 Convert award note to emoji award
up 20160419120017 Add metrics packet size
up 20160419122101 Add only allow merge if build succeeds to projects
up 20160421130527 Disable repository checks
up 20160425045124 Create u2f registrations
up 20160504091942 Add disabled oauth sign in sources to application settings
up 20160504112519 Add run untagged to ci runner
up 20160508194200 Remove wall enabled from projects
up 20160508202603 Add head commit id to merge request diffs
up 20160508215820 Add type to notes
up 20160508215920 Add positions to diff notes
up 20160508221410 Set type on legacy diff notes
up 20160509091049 Add locked to ci runner
up 20160509201028 Add health check access token to application settings
up 20160516174813 Add send user confirmation email to application settings
up 20160516224534 Add start commit id to merge request diffs
up 20160518200441 Add artifacts expire date to ci builds
up 20160519203051 Add developers can merge to protected branches
up 20160522215720 Add note type and position to sent notification
up 20160525205328 Remove main language from projects
up 20160527020117 Remove notification settings for deleted projects
up 20160528043124 Add users state index
up 20160530150109 Add container registry token expire delay to application settings
up 20160603075128 Add has external issue tracker to projects
up 20160603180330 Remove duplicated notification settings
up 20160603182247 Add index to notification settings
up 20160608155312 Add after sign up text to application settings
up 20160608195742 Add repository storage to projects
up 20160608211215 Add user default external to application settings
up 20160610140403 Remove notification setting not null constraints
up 20160610194713 Remove deprecated issues tracker columns from projects
up 20160610201627 Migrate users notification level
up 20160610204157 Add deployments
up 20160610204158 Add environments
up 20160610211845 Add environment to builds
up 20160610301627 Remove notification level from users
up 20160614182521 Add repository storage to application settings
up 20160615142710 Add index on requested at to members
up 20160615173316 Add enabled git access protocols to application settings
up 20160615191922 Set missing stage on ci builds
up 20160616084004 Change project of environment
up 20160616102642 Remove duplicated keys
up 20160616103005 Remove keys fingerprint index if exists
up 20160616103948 Add unique index to keys fingerprint
up 20160617301627 Add events to notification settings
up 20160620115026 Add index on runners locked
up 20160628085157 Add artifacts size to ci builds
up 20160629025435 Add column in progress merge commit sha to merge requests
up 20160703180340 Add index on award emoji user and name
up 20160705054938 Add protected branches push access
up 20160705054952 Add protected branches merge access
up 20160705055254 Move from developers can merge to protected branches merge access
up 20160705055308 Move from developers can push to protected branches push access
up 20160705055809 Remove developers can push from protected branches
up 20160705055813 Remove developers can merge from protected branches
up 20160705163108 Remove requesters that are owners
up 20160707104333 Add lock to issuables
up 20160712171823 Remove award emojis with no user
up 20160713205315 Add domain blacklist to application settings
up 20160715132507 Add user id to pipeline
up 20160715134306 Add index for pipeline user
up 20160715154212 Add request access enabled to projects
up 20160715204316 Add request access enabled to groups
up 20160715230841 Rename application settings restricted signup domains
up 20160716115710 Add when and yaml variables to ci builds
up 20160716115711 Add queued at to ci builds
up 20160718153603 Add has external wiki to projects
up 20160721081015 Drop and readd has external wiki in projects
up 20160722221922 Nullify blank type on notes
up 20160724205507 Add resolved to notes
up 20160725083350 Add external url to enviroments
up 20160725104020 Merge request diff remove uniq
up 20160725104452 Merge request diff add index
up 20160727163552 Create user agent details
up 20160727191041 Create boards
up 20160727193336 Create lists
up 20160728081025 Add pipeline events to web hooks
up 20160728103734 Add pipeline events to services
up 20160729173930 Remove project id from spam logs
up 20160801163421 Add expires at to member
up 20160801163709 Add submitted as ham to spam logs
up 20160802010328 Remove builds enable index on projects
up 20160803161903 Add unique index to lists label
up 20160804150737 Add timestamps to members again
up 20160805041956 Add deleted at to namespaces
up 20160808085531 Add token to build
up 20160808085602 Add index for build token
up 20160810102349 Remove ci runner trigram indexes
up 20160810142633 Remove redundant indexes
up 20160811172945 ********** NO FILE **********
up 20160816161312 Add column name to u2f registrations
up 20160817133006 Add koding to application settings
up 20160817154936 Add discussion ids to notes
up 20160818205718 Add expires at to project group links
up 20160819221631 Add index to note discussion
up 20160819221833 Reset diff note discussion id because it was calculated wrongly
up 20160819232256 Add incoming email token to users
up 20160823081327 Change merge error to text
up 20160823083941 ********** NO FILE **********
up 20160823213309 Add lfs enabled to projects
up 20160824103857 Drop unused ci tables
up 20160824121037 ********** NO FILE **********
up 20160824124900 Add table issue metrics
up 20160825052008 Add table merge request metrics
up 20160827011312 Ensure lock version has no default
up 20160829114652 Add markdown cache columns
up 20160830203109 Add confidential issues events to web hooks
up 20160830211132 Add confidential issues events to services
up 20160830232601 Change lock version not null
up 20160831214002 Create project features
up 20160831214543 Migrate project features
up 20160831223750 Remove features enabled from projects
up 20160901141443 Set confidential issues events on webhooks
up 20160901213340 Add lfs enabled to namespaces
up 20160902122721 Drop gitorious field from application settings
up 20160907131111 Add environment type to environments
up 20160913162434 Remove projects pushes since gc
up 20160913212128 Change artifacts size column
up 20160914131004 Only allow merge if all discussions are resolved
up 20160915042921 Create merge requests closing issues
up 20160919144305 Add type to labels
up 20160919145149 Add group id to labels
up 20160920160832 Add index to labels title
up 20160926145521 Add organization to user
up 20161006104309 Add state to environment
up 20161007133303 Precalculate trending projects
up 20161010142410 Create project authorizations
up 20161011222551 Remove inactive jira service properties
up 20161012180455 Add repository access level to project feature
up 20161014173530 Create label priorities
up 20161017091941 Add authorized projects populated to users
up 20161017095000 Add properties to deployment
up 20161017125927 Add unique index to labels
up 20161018024215 Migrate labels priority
up 20161018024550 Remove priority from labels
up 20161018124658 Make project owners masters
up 20161019190736 Migrate sidekiq queues from default
up 20161019213545 Generate project feature for projects
up 20161020075734 Default request access groups
up 20161020075830 Default request access projects
up 20161020083353 Add pipeline id to merge request metrics
up 20161021114307 Add lock version to build and pipelines
up 20161024042317 Migrate mailroom queue from default
up 20161025231710 Migrate jira to gem
up 20161031155516 Add housekeeping to application settings
up 20161031171301 Add project id to subscriptions
up 20161031174110 Migrate subscriptions project
up 20161031181638 Add unique index to subscriptions
up 20161103171205 Rename repository storage column
up 20161103191444 Add sidekiq throttling to application settings
up 20161106185620 Add project import data project index
up 20161109150329 Fix project records with invalid visibility
up 20161113184239 Create user chat names table
up 20161114024742 ********** NO FILE **********
up 20161115173905 ********** NO FILE **********
up 20161117114805 Remove undeleted groups
up 20161118183841 Add commit events to services
up 20161124111390 ********** NO FILE **********
up 20161124111395 ********** NO FILE **********
up 20161124111402 ********** NO FILE **********
up 20161124141322 Migrate process commit worker jobs
up 20161128142110 ********** NO FILE **********
up 20161128161412 ********** NO FILE **********
up 20161130095245 ********** NO FILE **********
up 20161130101252 ********** NO FILE **********
up 20161201001911 ********** NO FILE **********
up 20161201155511 ********** NO FILE **********
up 20161201160452 ********** NO FILE **********
up 20161202152031 ********** NO FILE **********
up 20161202152035 ********** NO FILE **********
up 20161206003819 ********** NO FILE **********
up 20161206153749 ********** NO FILE **********
up 20161206153751 ********** NO FILE **********
up 20161206153753 ********** NO FILE **********
up 20161206153754 ********** NO FILE **********
up 20161207231620 ********** NO FILE **********
up 20161207231621 ********** NO FILE **********
up 20161207231626 ********** NO FILE **********
up 20161209153400 ********** NO FILE **********
up 20161212142807 ********** NO FILE **********
up 20161213172958 ********** NO FILE **********
up 20161220141214 ********** NO FILE **********
up 20161221140236 ********** NO FILE **********
up 20161221152132 ********** NO FILE **********
up 20161221153951 ********** NO FILE **********
up 20161223034433 ********** NO FILE **********
up 20161223034646 ********** NO FILE **********
up 20161226122833 ********** NO FILE **********
up 20161227192806 ********** NO FILE **********
up 20170104150317 ********** NO FILE **********
up 20170106142508 ********** NO FILE **********
up 20170106172224 ********** NO FILE **********
up 20170121123724 ********** NO FILE **********
up 20170121130655 ********** NO FILE **********
up 20170124174637 ********** NO FILE **********
up 20170126174819 ********** NO FILE **********
up 20170127032550 ********** NO FILE **********
up 20170130204620 ********** NO FILE **********
up 20170204181513 ********** NO FILE **********
up 20170206071414 ********** NO FILE **********
up 20170206101007 ********** NO FILE **********
up 20170206101030 ********** NO FILE **********
up 20170210062829 ********** NO FILE **********
up 20170210075922 ********** NO FILE **********
up 20170210103609 ********** NO FILE **********
up 20170211073944 ********** NO FILE **********
up 20170214111112 ********** NO FILE **********
Results of GitLab application Check
root@gitlab:/# gitlab-rake gitlab:check SANITIZE=true
Checking GitLab Shell ...
GitLab Shell version >= 4.0.3 ? ... OK (4.0.3)
Repo base directory exists?
default... yes
Repo storage directories are symlinks?
default... no
Repo paths owned by git:git?
default... yes
Repo paths access is drwxrws---?
default... yes
hooks directories in repos are links: ...
5/3 ... ok
5/4 ... ok
6/5 ... ok
6/6 ... ok
7/7 ... ok
5/9 ... ok
9/10 ... ok
9/14 ... ok
7/15 ... ok
11/16 ... ok
8/17 ... repository is empty
9/18 ... ok
6/20 ... ok
7/21 ... ok
17/23 ... ok
17/24 ... ok
6/26 ... ok
9/27 ... ok
17/29 ... ok
7/31 ... ok
6/32 ... ok
6/33 ... ok
14/34 ... ok
14/35 ... ok
2/36 ... ok
6/37 ... ok
17/38 ... ok
14/40 ... ok
7/41 ... ok
2/42 ... ok
16/43 ... ok
16/44 ... ok
7/45 ... ok
11/46 ... ok
5/47 ... ok
11/49 ... ok
11/50 ... ok
17/51 ... ok
14/52 ... ok
17/53 ... ok
17/55 ... ok
19/56 ... ok
17/57 ... ok
21/59 ... ok
17/60 ... ok
14/61 ... ok
17/62 ... ok
17/63 ... ok
17/64 ... ok
6/65 ... ok
14/66 ... ok
22/67 ... ok
7/68 ... ok
2/69 ... ok
17/70 ... ok
23/71 ... ok
23/72 ... ok
22/73 ... ok
22/74 ... ok
22/75 ... ok
23/76 ... repository is empty
6/77 ... ok
17/78 ... ok
17/79 ... ok
17/80 ... ok
7/81 ... ok
14/82 ... ok
7/83 ... ok
31/84 ... ok
31/86 ... ok
31/87 ... ok
24/88 ... ok
7/89 ... ok
31/91 ... ok
31/92 ... ok
17/93 ... ok
17/94 ... ok
17/95 ... ok
14/96 ... ok
9/97 ... ok
9/98 ... ok
11/99 ... ok
11/100 ... ok
11/101 ... ok
14/102 ... ok
19/103 ... ok
24/104 ... ok
6/105 ... ok
6/106 ... ok
26/107 ... ok
26/108 ... ok
19/109 ... ok
6/110 ... ok
14/111 ... ok
27/112 ... ok
7/113 ... ok
21/114 ... ok
21/115 ... ok
21/116 ... ok
19/117 ... ok
24/118 ... ok
19/119 ... ok
17/120 ... ok
9/121 ... ok
21/122 ... ok
6/123 ... ok
16/125 ... ok
29/126 ... ok
19/127 ... ok
24/129 ... ok
29/130 ... ok
30/131 ... ok
31/132 ... ok
21/133 ... ok
19/134 ... ok
17/135 ... ok
19/136 ... ok
17/137 ... ok
19/138 ... ok
31/139 ... ok
31/140 ... ok
6/142 ... repository is empty
17/143 ... ok
6/144 ... ok
33/145 ... ok
19/146 ... ok
19/147 ... ok
6/148 ... ok
17/149 ... ok
6/151 ... ok
9/152 ... repository is empty
21/153 ... ok
21/154 ... ok
21/155 ... ok
21/156 ... ok
32/157 ... ok
6/158 ... ok
6/159 ... ok
32/160 ... ok
6/161 ... ok
6/162 ... ok
17/163 ... ok
17/164 ... ok
35/165 ... ok
9/168 ... ok
9/170 ... ok
35/171 ... ok
35/172 ... ok
31/173 ... ok
19/174 ... ok
36/175 ... ok
36/176 ... ok
36/177 ... ok
36/178 ... ok
36/179 ... ok
5/180 ... ok
6/181 ... ok
37/182 ... ok
6/183 ... ok
37/184 ... ok
37/185 ... ok
14/186 ... ok
37/187 ... ok
31/188 ... ok
31/189 ... ok
14/190 ... ok
36/191 ... ok
37/192 ... ok
21/193 ... ok
36/194 ... ok
6/197 ... ok
37/198 ... ok
38/199 ... ok
Running /opt/gitlab/embedded/service/gitlab-shell/bin/check
Check GitLab API access: OK
Access to /var/opt/gitlab/.ssh/authorized_keys: OK
Send ping to redis server: OK
gitlab-shell self-check successful
Checking GitLab Shell ... Finished
Checking Sidekiq ...
Running? ... yes
Number of Sidekiq processes ... 1
Checking Sidekiq ... Finished
Checking Reply by email ...
Reply by email is disabled in config/gitlab.yml
Checking Reply by email ... Finished
Checking LDAP ...
LDAP is disabled in config/gitlab.yml
Checking LDAP ... Finished
Checking GitLab ...
Git configured with autocrlf=input? ... yes
Database config exists? ... yes
All migrations up? ... yes
Database contains orphaned GroupMembers? ... no
GitLab config exists? ... yes
GitLab config outdated? ... no
Log directory writable? ... yes
Tmp directory writable? ... yes
Uploads directory setup correctly? ... yes
Init script exists? ... skipped (omnibus-gitlab has no init script)
Init script up-to-date? ... skipped (omnibus-gitlab has no init script)
projects have namespace: ...
5/3 ... yes
5/4 ... yes
6/5 ... yes
6/6 ... yes
7/7 ... yes
5/9 ... yes
9/10 ... yes
9/14 ... yes
7/15 ... yes
11/16 ... yes
8/17 ... yes
9/18 ... yes
6/20 ... yes
7/21 ... yes
17/23 ... yes
17/24 ... yes
6/26 ... yes
9/27 ... yes
17/29 ... yes
7/31 ... yes
6/32 ... yes
6/33 ... yes
14/34 ... yes
14/35 ... yes
2/36 ... yes
6/37 ... yes
17/38 ... yes
14/40 ... yes
7/41 ... yes
2/42 ... yes
16/43 ... yes
16/44 ... yes
7/45 ... yes
11/46 ... yes
5/47 ... yes
11/49 ... yes
11/50 ... yes
17/51 ... yes
14/52 ... yes
17/53 ... yes
17/55 ... yes
19/56 ... yes
17/57 ... yes
21/59 ... yes
17/60 ... yes
14/61 ... yes
17/62 ... yes
17/63 ... yes
17/64 ... yes
6/65 ... yes
14/66 ... yes
22/67 ... yes
7/68 ... yes
2/69 ... yes
17/70 ... yes
23/71 ... yes
23/72 ... yes
22/73 ... yes
22/74 ... yes
22/75 ... yes
23/76 ... yes
6/77 ... yes
17/78 ... yes
17/79 ... yes
17/80 ... yes
7/81 ... yes
14/82 ... yes
7/83 ... yes
31/84 ... yes
31/86 ... yes
31/87 ... yes
24/88 ... yes
7/89 ... yes
31/91 ... yes
31/92 ... yes
17/93 ... yes
17/94 ... yes
17/95 ... yes
14/96 ... yes
9/97 ... yes
9/98 ... yes
11/99 ... yes
11/100 ... yes
11/101 ... yes
14/102 ... yes
19/103 ... yes
24/104 ... yes
6/105 ... yes
6/106 ... yes
26/107 ... yes
26/108 ... yes
19/109 ... yes
6/110 ... yes
14/111 ... yes
27/112 ... yes
7/113 ... yes
21/114 ... yes
21/115 ... yes
21/116 ... yes
19/117 ... yes
24/118 ... yes
19/119 ... yes
17/120 ... yes
9/121 ... yes
21/122 ... yes
6/123 ... yes
16/125 ... yes
29/126 ... yes
19/127 ... yes
24/129 ... yes
29/130 ... yes
30/131 ... yes
31/132 ... yes
21/133 ... yes
19/134 ... yes
17/135 ... yes
19/136 ... yes
17/137 ... yes
19/138 ... yes
31/139 ... yes
31/140 ... yes
6/142 ... yes
17/143 ... yes
6/144 ... yes
33/145 ... yes
19/146 ... yes
19/147 ... yes
6/148 ... yes
17/149 ... yes
6/151 ... yes
9/152 ... yes
21/153 ... yes
21/154 ... yes
21/155 ... yes
21/156 ... yes
32/157 ... yes
6/158 ... yes
6/159 ... yes
32/160 ... yes
6/161 ... yes
6/162 ... yes
17/163 ... yes
17/164 ... yes
35/165 ... yes
9/168 ... yes
9/170 ... yes
35/171 ... yes
35/172 ... yes
31/173 ... yes
19/174 ... yes
36/175 ... yes
36/176 ... yes
36/177 ... yes
36/178 ... yes
36/179 ... yes
5/180 ... yes
6/181 ... yes
37/182 ... yes
6/183 ... yes
37/184 ... yes
37/185 ... yes
14/186 ... yes
37/187 ... yes
31/188 ... yes
31/189 ... yes
14/190 ... yes
36/191 ... yes
37/192 ... yes
21/193 ... yes
36/194 ... yes
6/197 ... yes
37/198 ... yes
38/199 ... yes
Redis version >= 2.8.0? ... yes
Ruby version >= 2.1.0 ? ... yes (2.3.1)
Your git bin path is "/opt/gitlab/embedded/bin/git"
Git version >= 2.7.3 ? ... yes (2.7.4)
Active users: 13
Checking GitLab ... Finished