Skip to content

Commit

Permalink
🔖 Release version 0.1.1 (#18)
Browse files Browse the repository at this point in the history
* 🔥 Remove `loop` argument

* 🔖 Release version `0.1.1`
  • Loading branch information
gabrielmbmb authored Apr 10, 2023
1 parent aa0bf34 commit 790eb4a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion kaflow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@

__all__.append("Protobuf")

__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 0 additions & 2 deletions kaflow/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ def _add_topic_consumer_func(
def _create_consumer(self) -> AIOKafkaConsumer:
return AIOKafkaConsumer(
*self._consumers.keys(),
loop=self._loop,
bootstrap_servers=self.brokers,
client_id=self.client_id,
group_id=self.group_id,
Expand Down Expand Up @@ -314,7 +313,6 @@ def _create_consumer(self) -> AIOKafkaConsumer:

def _create_producer(self) -> AIOKafkaProducer:
return AIOKafkaProducer(
loop=self._loop,
bootstrap_servers=self.brokers,
client_id=self.client_id,
metadata_max_age_ms=self.metadata_max_age_ms,
Expand Down

0 comments on commit 790eb4a

Please sign in to comment.