riddl 0.99.145 → 0.99.146
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/lib/ruby/riddl/client.rb +3 -2
- data/riddl.gemspec +1 -1
- metadata +1 -1
data/lib/ruby/riddl/client.rb
CHANGED
|
@@ -448,9 +448,10 @@ unless Module.constants.include?('CLIENT_INCLUDED')
|
|
|
448
448
|
# to ensure that all shit has been written. fuck. not the best
|
|
449
449
|
# solution, but scripts may preemtively quit if we dont do it. if
|
|
450
450
|
# anybody knows a better solution, please tell me.
|
|
451
|
-
EM.next_tick { sig.continue }
|
|
452
|
-
sig.wait
|
|
453
451
|
|
|
452
|
+
### UPDATE todo, we produce deadlocks here, rethink this mess
|
|
453
|
+
# EM.next_tick { sig.continue }
|
|
454
|
+
# sig.wait
|
|
454
455
|
end
|
|
455
456
|
return status, response, response_headers
|
|
456
457
|
#}}}
|
data/riddl.gemspec
CHANGED