Skip to content

Commit

Permalink
small bugfix and upgrade to 0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Harris committed Sep 26, 2017
1 parent eaeaae7 commit 00c741a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Binary file added dist/eventify-0.4.8.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
# built documents.
#
# The short X.Y version.
version = '0.4.7'
version = '0.4.8'
# The full version, including alpha/beta/rc tags.
release = '0.4.7'
release = '0.4.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion eventify/drivers/kafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ async def onJoin(self):
if self.subscribed_topics is not None:
consumer = AIOKafkaConsumer(
''.join(self.subscribed_topics),
bootstrap_servers='localhost:9092',
bootstrap_servers=self.transport_host,
loop=loop
)
await consumer.start()
Expand Down
2 changes: 1 addition & 1 deletion example/kafka/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "gce-vm-collector",
"image": "gce/vm",
"driver": "kafka",
"transport_host": "localhost:9092",
"transport_host": "socket.opless.io:9092",
"pub_options": {
"acknowledge": true,
"retain": false,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
setup(
name='eventify',
packages=find_packages(),
version='0.4.7',
version='0.4.8',
description='Event Driven Asynchronous Framework',
author='Matthew Harris',
author_email='matt@x-qa.com',
url='https://github.com/eventifyio/eventify',
download_url='https://github.com/eventifyio/eventify/raw/master/dist/eventify-0.4.7.tar.gz',
download_url='https://github.com/eventifyio/eventify/raw/master/dist/eventify-0.4.8.tar.gz',
keywords=['event', 'event-driven', 'async',
'framework', 'producer', 'consumer'],
classifiers=[],
Expand Down

0 comments on commit 00c741a

Please sign in to comment.