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:
Diffstat (limited to 'app/graphql/types/deployment_type.rb')
-rw-r--r--app/graphql/types/deployment_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/deployment_type.rb b/app/graphql/types/deployment_type.rb
index 1c23fd44ea1..6d895cc81cf 100644
--- a/app/graphql/types/deployment_type.rb
+++ b/app/graphql/types/deployment_type.rb
@@ -65,9 +65,9 @@ module Types
field :tags,
[Types::DeploymentTagType],
description: 'Git tags that contain this deployment. ' \
- 'This field can only be resolved for one deployment in any single request.',
+ 'This field can only be resolved for two deployments in any single request.',
calls_gitaly: true do
- extension ::Gitlab::Graphql::Limit::FieldCallCount, limit: 1
+ extension ::Gitlab::Graphql::Limit::FieldCallCount, limit: 2
end
end
end