RegioHelden / django-kafka

MIT License
2 stars 1 forks source link

Cannot use KafkaSkipMixin when args, not kwargs, are used in .save(...) #2

Closed stefan-cardnell-rh closed 2 months ago

stefan-cardnell-rh commented 2 months ago

If a model is saved using model.save(...) but specified args in to the save method, and not kwargs, an Exception will be raised

KafkaSkipMixin.save() takes 1 positional argument but 5 were given

This would be because KafkaSkipMixin only accepts kwargs, and no args.