From dabcfd08da9f30b2d5cc81a9a0370f7dfb3c5567 Mon Sep 17 00:00:00 2001 From: Cassidy Scheffer Date: Wed, 9 Oct 2024 17:24:14 -0400 Subject: [PATCH] standard --- lib/graphql-hive/client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/graphql-hive/client.rb b/lib/graphql-hive/client.rb index 5138665..499f4f9 100644 --- a/lib/graphql-hive/client.rb +++ b/lib/graphql-hive/client.rb @@ -17,7 +17,7 @@ def initialize(token:, logger:, port: "443", endpoint: "app.graphql-hive.com") end def send(path, body, _log_type) - response = @connection.post(path) do |req| + @connection.post(path) do |req| req.body = JSON.generate(body) end rescue Faraday::Error => e