Skip to content

Commit 14f1b06

Browse files
committed
revert changes
1 parent 2825e23 commit 14f1b06

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

appengine/websockets/app.rb

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@
2121

2222
Faye::WebSocket.load_adapter "thin"
2323

24-
# [END gae_flex_websockets]
25-
# Allows all hosts in development
26-
configure :development do
27-
set :host_authorization, { permitted_hosts: [] }
28-
end
29-
30-
# [START gae_flex_websockets]
3124
# For the purposes of this example, use a global variable to keep track of
3225
# all connected clients in order to send chat messages. This approach limits
3326
# us to a single server and a single process; a more robust solution would be

appengine/websockets/spec/websockets_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
Capybara.register_server :thin do |app, port, host|
2525
require "rack/handler/thin"
26-
Rack::Handler::Thin.run(app, :Port => port, :Host => host, browser_options: {'no-sandbox': nil})
26+
Rack::Handler::Thin.run(app, :Port => port, :Host => host)
2727
end
2828

2929
Capybara.server = :thin

0 commit comments

Comments
 (0)