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 'config/initializers/grpc_patch.rb')
-rw-r--r--config/initializers/grpc_patch.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/config/initializers/grpc_patch.rb b/config/initializers/grpc_patch.rb
new file mode 100644
index 00000000000..a6094f85c94
--- /dev/null
+++ b/config/initializers/grpc_patch.rb
@@ -0,0 +1,31 @@
+# frozen_string_literal: true
+
+require 'grpc'
+
+# grpc v1.42 and up introduced a regression where a non-standard
+# exception, `GRPC::Core::CallError`, is raised instead of
+# DeadlineExceeded: https://github.com/grpc/grpc/issues/33283.
+# This patch applies https://github.com/grpc/grpc/pull/33565.
+module Gitlab
+ module GRPCPatch
+ module ActiveCall
+ def remote_read
+ super
+ ensure
+ # Ensure we don't attempt to request the initial metadata again
+ # in case an exception occurs.
+ @metadata_received = true # rubocop:disable Gitlab/ModuleWithInstanceVariables
+ end
+
+ def receive_and_check_status
+ super
+ ensure
+ # Ensure we don't attempt to request the initial metadata again
+ # in case an exception occurs.
+ @metadata_received = true # rubocop:disable Gitlab/ModuleWithInstanceVariables
+ end
+ end
+ end
+end
+
+GRPC::ActiveCall.prepend Gitlab::GRPCPatch::ActiveCall