The load-balancer (LB) and workers supports canceling upload operation, for this they listen on tearDownChan channel.
We have a go-routine in the vhdUploadCmdHandler that listen for upload failure, update this routine to send cancellation signal to LB and workers on upload failure.
Canceling LB (which in turn cancel all workers) in case of failure of upload of one block is not a correct approach. We want to workers to continue uploading other blocks. Closing this.
The load-balancer (LB) and workers supports canceling upload operation, for this they listen on tearDownChan channel.
We have a go-routine in the vhdUploadCmdHandler that listen for upload failure, update this routine to send cancellation signal to LB and workers on upload failure.