LVS-JSONService 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.specification +1 -1
- data/LVS-JSONService.gemspec +1 -1
- data/VERSION +1 -1
- data/lib/lvs/json_service/request.rb +2 -0
- metadata +1 -1
data/.specification
CHANGED
data/LVS-JSONService.gemspec
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.8
|
|
@@ -120,6 +120,8 @@ module LVS
|
|
|
120
120
|
if returned_request_id != request_id && !returned_request_id.blank?
|
|
121
121
|
raise LVS::JsonService::RequestMismatchError.new("The sent Request ID (#{request_id}) didn't " +
|
|
122
122
|
"match the returned Request ID (#{returned_request_id}) ")
|
|
123
|
+
else
|
|
124
|
+
LVS::JsonService::Logger.debug "Sent and received Request ID - #{request_id}"
|
|
123
125
|
end
|
|
124
126
|
end
|
|
125
127
|
end
|