Revert #6581, it causes regressions

We need a more clever solution without breaking HttpUnknownRequestResponse.
bug/bundler_fix
Brent Cook 2016-07-05 00:10:20 -05:00
parent 12812650c0
commit 9b4028d2d7
No known key found for this signature in database
GPG Key ID: 1FFAA0B24B708F96
1 changed files with 3 additions and 1 deletions

View File

@ -433,7 +433,9 @@ protected
unless [:unknown_uuid, :unknown_uuid_url].include?(info[:mode])
print_status("Unknown request to #{request_summary}")
end
resp = nil
resp.code = 200
resp.message = 'OK'
resp.body = datastore['HttpUnknownRequestResponse'].to_s
self.pending_connections -= 1
end