Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-01-20 18:10:29 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-01-20 18:10:29 +0300
commitef8c47e97e1c178291e4857314a3f53875d75062 (patch)
tree89ef0c1cd34e864aad1346a0ee07bccb81a9ac65 /lib/gitlab/global_id.rb
parentf2ebc27236ecef67e67da1da864bbf58e9b9c267 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/global_id.rb')
-rw-r--r--lib/gitlab/global_id.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/global_id.rb b/lib/gitlab/global_id.rb
index e8a6006dce1..7e9412236cf 100644
--- a/lib/gitlab/global_id.rb
+++ b/lib/gitlab/global_id.rb
@@ -19,8 +19,8 @@ module Gitlab
value
when URI::GID
GlobalID.new(value)
- when Integer
- raise CoerceError, 'Cannot coerce Integer' unless model_name.present?
+ when Integer, String
+ raise CoerceError, "Cannot coerce #{value.class}" unless model_name.present?
GlobalID.new(::Gitlab::GlobalId.build(model_name: model_name, id: value))
else