GET /application/settings outputs repository_size_limit in bytes, causing RangeError when PUT-ing for large limits
Everyone can contribute. Help move this issue forward while earning points, leveling up and collecting rewards.
Summary
A large GitLab Premium customer reports internally that our API endpoint GET /application/settings outputs repository_size_limit in bytes, while the UI uses MB.
The value can not be PUT into another instance
Steps to reproduce
- On the same test instance as in #349499, set
Size limit per repository (MB) -
curl -s -H "PRIVATE-TOKEN:${PRIVATE_TOKEN}" "${1ST_API_URL}/application/settings" > Gitlab_config.json-
jq .repository_size_limit < Gitlab_config.jsonyields1125899906842624(on my test instance; customer reports 1 byte less:1125899906842623)
-
- On another instance with the same GitLab version, create a PAT with
apiscope. - Try
curl -s -X PUT -H "PRIVATE-TOKEN:"${PRIVATE_TOKEN} -H "Content-Type: application/json" ${2ND_API_URL}"/application/settings" -d "@Gitlab_config.json".
Our docs say that for importing, a string is needed.
Example Project
Internal test instances
What is the current bug behavior?
{"message":"500 Internal Server Error"}%
What is the expected correct behavior?
The repository_size_limit value should be consistent between UI and GET output, or at least be PUTable into another instance without change.
Relevant logs and/or screenshots
… exception.class":"ActiveModel::RangeError",
"exception.message":"1180591620717411303424 is out of range for ActiveModel::Type::Integer with limit 8 bytes",
"exception.backtrace": [
"app/services/application_settings/update_service.rb:50:in `update_settings'",
"lib/gitlab/metrics/instrumentation.rb:160:in `block in update_settings'",
"lib/gitlab/metrics/method_call.rb:27:in `measure'",
"lib/gitlab/metrics/instrumentation.rb:160:in `update_settings'",
"app/services/application_settings/update_service.rb:12:in `execute'",
"ee/app/services/ee/application_settings/update_service.rb:25:in `execute'",
"lib/api/settings.rb:233:in `block in \u003cclass:Settings\u003e'"
…
Output of checks
Results of GitLab environment info
Expand for output related to GitLab environment info
# sudo gitlab-rake gitlab:env:info System information System: Ubuntu 20.04 Proxy: no Current User: git Using RVM: no Ruby Version: 2.7.2p137 Gem Version: 3.1.4 Bundler Version:2.1.4 Rake Version: 13.0.3 Redis Version: 6.0.14 Git Version: 2.32.0 Sidekiq Version:5.2.9 Go Version: unknown GitLab information Version: 14.1.3-ee Revision: 77e6fa75d55 Directory: /opt/gitlab/embedded/service/gitlab-rails DB Adapter: PostgreSQL DB Version: 12.6 URL: https://kl-258206a-sett-ex.sr.gitlab.support HTTP Clone URL: https://kl-258206a-sett-ex.sr.gitlab.support/some-group/some-project.git SSH Clone URL: git@kl-258206a-sett-ex.sr.gitlab.support:some-group/some-project.git Elasticsearch: yes Geo: no Using LDAP: no Using Omniauth: yes Omniauth Providers: GitLab Shell Version: 13.19.1 Repository storage paths: - default: /var/opt/gitlab/git-data/repositories GitLab Shell path: /opt/gitlab/embedded/service/gitlab-shell Git: /opt/gitlab/embedded/bin/git
Results of GitLab application Check
Expand for output related to the GitLab application check
sudo gitlab-rake gitlab:check SANITIZE=true
Checking GitLab subtasks ...
Checking GitLab Shell ...
GitLab Shell: ... GitLab Shell version >= 13.19.1 ? ... OK (13.19.1) Running /opt/gitlab/embedded/service/gitlab-shell/bin/check Internal API available: OK Redis available via internal API: OK gitlab-shell self-check successful
Checking GitLab Shell ... Finished
Checking Gitaly ...
Gitaly: ... default ... OK
Checking Gitaly ... Finished
Checking Sidekiq ...
Sidekiq: ... Running? ... yes Number of Sidekiq processes (cluster/worker) ... 1/1
Checking Sidekiq ... Finished
Checking Incoming Email ...
Incoming Email: ... Reply by email is disabled in config/gitlab.yml
Checking Incoming Email ... Finished
Checking LDAP ...
LDAP: ... LDAP is disabled in config/gitlab.yml
Checking LDAP ... Finished
Checking GitLab App ...
Git configured correctly? ... yes Database config exists? ... yes All migrations up? ... yes Database contains orphaned GroupMembers? ... no GitLab config exists? ... yes GitLab config up to date? ... yes Log directory writable? ... yes Tmp directory writable? ... yes Uploads directory exists? ... yes Uploads directory has correct permissions? ... yes Uploads directory tmp has correct permissions? ... 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: ... 2/1 ... yes Redis version >= 5.0.0? ... yes Ruby version >= 2.7.2 ? ... yes (2.7.2) Git version >= 2.31.0 ? ... yes (2.32.0) Git user has default SSH configuration? ... yes Active users: ... 1 Is authorized keys file accessible? ... yes GitLab configured to store new projects in hashed storage? ... yes All projects are in hashed storage? ... yes Elasticsearch version 7.x (6.4 - 6.x deprecated to be removed in 13.8)? ... yes (7.16.2)
Checking GitLab App ... Finished
Checking GitLab subtasks ... Finished
Possible fixes
The repository_size_limit value could be divided by 10^6 on the GET or PUT side.