allscripts_unity_client 2.1.1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65294ae5ba556eafd37a4894d2a66544eab30dd5
|
4
|
+
data.tar.gz: 94ba785edfa2315cb6a585681150e5ab79570ef1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e70c35317adefdfd8f734541c7d59b3f15febb9e69a908e76ed4c75973fcb96bf93b19bcdb765cbe02ce7aab46c57f62754ebea37e68bf88eb260ca809f4b115
|
7
|
+
data.tar.gz: 3a798a19d067e86f63849f8087b9e0dae555cea13a900624636ce097754bb3273e7aab1826ddf211ccb5b55c0bfb2399626007db0a73989be89e074cc79e42a4
|
@@ -23,7 +23,7 @@ module AllscriptsUnityClient
|
|
23
23
|
request_data = JSONUnityRequest.new(parameters, @options.timezone, @options.appname, @security_token)
|
24
24
|
|
25
25
|
response = nil
|
26
|
-
NewRelicSupport.trace_execution_scoped_if_available(
|
26
|
+
NewRelicSupport.trace_execution_scoped_if_available(self.class, ["Custom/UnityJSON/#{parameters[:action]}"]) do
|
27
27
|
response = @connection.post do |request|
|
28
28
|
request.url "#{UNITY_JSON_ENDPOINT}/MagicJson"
|
29
29
|
request.headers['Content-Type'] = 'application/json'
|
@@ -56,7 +56,7 @@ module AllscriptsUnityClient
|
|
56
56
|
}
|
57
57
|
|
58
58
|
response = nil
|
59
|
-
NewRelicSupport.trace_execution_scoped_if_available(
|
59
|
+
NewRelicSupport.trace_execution_scoped_if_available(self.class, ["Custom/UnityJSON/GetToken"]) do
|
60
60
|
response = @connection.post do |request|
|
61
61
|
request.url "#{UNITY_JSON_ENDPOINT}/GetToken"
|
62
62
|
request.headers['Content-Type'] = 'application/json'
|
@@ -84,7 +84,7 @@ module AllscriptsUnityClient
|
|
84
84
|
}
|
85
85
|
|
86
86
|
response = nil
|
87
|
-
NewRelicSupport.trace_execution_scoped_if_available(
|
87
|
+
NewRelicSupport.trace_execution_scoped_if_available(self.class, ["Custom/UnityJSON/RetireSecurityToken"]) do
|
88
88
|
response = @connection.post do |request|
|
89
89
|
request.url "#{UNITY_JSON_ENDPOINT}/RetireSecurityToken"
|
90
90
|
request.headers['Content-Type'] = 'application/json'
|
@@ -62,7 +62,7 @@ module AllscriptsUnityClient
|
|
62
62
|
response = nil
|
63
63
|
begin
|
64
64
|
start_timer
|
65
|
-
NewRelicSupport.trace_execution_scoped_if_available(
|
65
|
+
NewRelicSupport.trace_execution_scoped_if_available(self.class, ["Custom/UnitySOAP/#{parameters[:action]}"]) do
|
66
66
|
response = @savon_client.call('Magic', call_data)
|
67
67
|
end_timer
|
68
68
|
end
|
@@ -93,7 +93,7 @@ module AllscriptsUnityClient
|
|
93
93
|
begin
|
94
94
|
start_timer
|
95
95
|
response = nil
|
96
|
-
NewRelicSupport.trace_execution_scoped_if_available(
|
96
|
+
NewRelicSupport.trace_execution_scoped_if_available(self.class, ["Custom/UnitySOAP/GetToken"]) do
|
97
97
|
response = @savon_client.call('GetSecurityToken', call_data)
|
98
98
|
end_timer
|
99
99
|
end
|
@@ -120,7 +120,7 @@ module AllscriptsUnityClient
|
|
120
120
|
|
121
121
|
begin
|
122
122
|
start_timer
|
123
|
-
NewRelicSupport.trace_execution_scoped_if_available(
|
123
|
+
NewRelicSupport.trace_execution_scoped_if_available(self.class, ["Custom/UnitySOAP/RetireSecurityToken"]) do
|
124
124
|
@savon_client.call('RetireSecurityToken', call_data)
|
125
125
|
end_timer
|
126
126
|
end
|