don't wait for the session to send back a response after telling it to die

git-svn-id: file:///home/svn/framework3/trunk@13083 4d416f70-5f16-0410-b530-b9f4589650da
unstable
James Lee 2011-07-01 23:29:00 +00:00
parent 56de119a0f
commit 9c8605813e
1 changed files with 2 additions and 1 deletions

View File

@ -311,7 +311,8 @@ class ClientCore < Extension
# #
def shutdown def shutdown
request = Packet.create_request('core_shutdown') request = Packet.create_request('core_shutdown')
response = self.client.send_packet_wait_response(request, 15) # Don't wait for the response since the server will be dead
self.client.send_packet(request)
true true
end end