Merge pull request #6581 from bcook-r7/uuidretry

don't send a response on invalid UUID, allow stagers to survive another day
bug/bundler_fix
dmaloney-r7 2016-05-02 11:23:02 -05:00
commit 3b893cf740
1 changed files with 2 additions and 4 deletions

View File

@ -420,16 +420,14 @@ protected
unless [:unknown_uuid, :unknown_uuid_url].include?(info[:mode])
print_status("Unknown request to #{request_summary}")
end
resp.code = 200
resp.message = 'OK'
resp.body = datastore['HttpUnknownRequestResponse'].to_s
resp = nil
self.pending_connections -= 1
end
cli.send_response(resp) if (resp)
# Force this socket to be closed
obj.service.close_client( cli )
obj.service.close_client(cli)
end
end