You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2019/11/11 03:41:14 UTC

[GitHub] [pulsar-client-go] cckellogg opened a new issue #87: Producer does not close all partitioned producers

cckellogg opened a new issue #87: Producer does not close all partitioned producers
URL: https://github.com/apache/pulsar-client-go/issues/87
 
 
   When closing a producer all partitioned producers should be closed.
   
   The current code only closes the first partitioned producer
   ```
   func (p *producer) Close() error {
   	for _, pp := range p.producers {
   		return pp.Close()
   	}
   	return nil
   }
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services