lightstep 0.10.7 → 0.10.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/lightstep/transport/http_json.rb +2 -2
- data/lib/lightstep/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb5c525e6e010a41c04b1d6eb448384b1b514d47
|
4
|
+
data.tar.gz: 9bd52f884ea30db79b7b9cd5e21f7d6083be5fb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf297bdc0b04728703ef4bccd803d94676ac1678081307070f74ea1418318b7765b616e9359256dd5ab647fb80b18ca9487c71442c47797c54b2bcc207621e44
|
7
|
+
data.tar.gz: 50d4d038884a70d12adb667e32f461a25653d260f3bfedefd7a7230a0fc8b776567f6f4d5f843a15eade14c27b769f1ebc21b6cd5e7801f427c4426737b32b0a
|
@@ -30,8 +30,8 @@ module LightStep
|
|
30
30
|
@verbose = verbose
|
31
31
|
@encryption = encryption
|
32
32
|
|
33
|
-
raise ConfigurationError, "access_token must be a string" unless String === access_token
|
34
|
-
raise ConfigurationError, "access_token cannot be blank" if access_token.empty?
|
33
|
+
raise Tracer::ConfigurationError, "access_token must be a string" unless String === access_token
|
34
|
+
raise Tracer::ConfigurationError, "access_token cannot be blank" if access_token.empty?
|
35
35
|
@access_token = access_token
|
36
36
|
end
|
37
37
|
|
data/lib/lightstep/version.rb
CHANGED