newrelic-manticore 1.1.0.rc1-java → 1.1.0.rc2-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/new_relic/manticore/wrapped_response.rb +4 -1
- data/lib/newrelic/manticore/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70d9a32e1f3c655b7a83f025beed26355ebcf44ca69de03415d29ea732180760
|
4
|
+
data.tar.gz: 027645a9e5180c9fbec6d4925dfcf53b3b5264edce2cfde531fa304b1ad84da0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 899866c9048e05703ca290c64a3a84ebf73ce8f1435faf9bd12273801beec32f0d66e3866adfe122ff3569f1ccaa4084966914008b5523dbc82b1511d654c49b
|
7
|
+
data.tar.gz: 4359006a763ff62b241620e8ac60ba63f281e9a5df3c1b9b47d185307d83c3521878ae986416161834ecfcf7afb8fc5b210d4ba2d94463f7746cbacb3eaaad27
|
@@ -1,9 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require "new_relic/agent/http_clients/abstract"
|
4
|
+
|
3
5
|
module NewRelic
|
4
6
|
module Manticore
|
5
|
-
class WrappedResponse
|
7
|
+
class WrappedResponse < NewRelic::Agent::HTTPClients::AbstractResponse
|
6
8
|
def initialize(response)
|
9
|
+
super(response)
|
7
10
|
@headers = response.headers
|
8
11
|
end
|
9
12
|
|