lib/chillout/dispatcher.rb in chillout-0.4.1 vs lib/chillout/dispatcher.rb in chillout-0.5.0
- old
+ new
@@ -18,7 +18,12 @@
response = @server_side.send_check
CheckResult.new(response)
rescue HttpClient::NotReceived => e
CheckResult.new(e)
end
+
+ def send_startup_message
+ @server_side.send_startup_message
+ rescue HttpClient::NotReceived => e
+ end
end
end