You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently running into an issue were I'm trying to pass a MockProducer to the partitions-for function but the function is throwing the Got non producer/consumer! error. This is because MockProducer is not of type KafkaProducer but rather implements the Producer interface. I think if we change this type checking to be Producer instead then we'll have the ability to use Mocks along with jackdaw.
Currently running into an issue were I'm trying to pass a MockProducer to the partitions-for function but the function is throwing the
Got non producer/consumer!
error. This is becauseMockProducer
is not of typeKafkaProducer
but rather implements theProducer
interface. I think if we change this type checking to beProducer
instead then we'll have the ability to use Mocks along with jackdaw.The text was updated successfully, but these errors were encountered: