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-b9f4589650daunstable
parent
56de119a0f
commit
9c8605813e
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue