fix delay in blackhole

pull/1028/merge
Darien Raymond 2018-04-11 23:02:10 +02:00
parent d2470e2cdb
commit 3e8da9e540
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
1 changed files with 0 additions and 1 deletions

View File

@ -34,7 +34,6 @@ func (h *Handler) Process(ctx context.Context, outboundRay ray.OutboundRay, dial
// Sleep a little here to make sure the response is sent to client. // Sleep a little here to make sure the response is sent to client.
time.Sleep(time.Second) time.Sleep(time.Second)
outboundRay.OutboundOutput().CloseError() outboundRay.OutboundOutput().CloseError()
time.Sleep(time.Second * 2)
return nil return nil
} }