Skip to content

Commit

Permalink
Kafka-connector: bug fix and version update 0.2.4->0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ML-Guy committed Mar 7, 2019
1 parent c90485f commit 60998be
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Expand Up @@ -2,7 +2,7 @@
History
=======

0.2.4 (2019-02-23)
0.2.5 (2019-02-23)
------------------

* Cross-platform: Windows, Mac, and Linux are officially supported.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.2.4
0.2.5
2 changes: 1 addition & 1 deletion src/eazyserver/__init__.py
Expand Up @@ -13,7 +13,7 @@

__author__ = """Ashutosh Mishra"""
__email__ = 'ashutoshdtu@gmail.com'
__version__ = '0.2.4'
__version__ = '0.2.5'


import logging
Expand Down
2 changes: 1 addition & 1 deletion src/eazyserver/core/kafka_connector.py
Expand Up @@ -28,7 +28,7 @@ def kafka_to_dict(kafka_msg):
def dict_to_kafka(output,source_data):
for data in source_data:
if output["source_id"] == data["_id"]:
output["_kafka_source_id"] = msg["_kafka__id"]
output["_kafka_source_id"] = data["_kafka__id"]
break
kafka_msg = dict_to_binary(json.dumps(output))
return kafka_msg
Expand Down
2 changes: 1 addition & 1 deletion src/eazyserver/settings.ini
@@ -1,6 +1,6 @@
NAME = "eazyserver"
DESCRIPTION = "Python Flask based REST/JsonRPC server."
VERSION = "0.2.4"
VERSION = "0.2.5"
API_VERSION = 'v1'

REST_BASE_ROUTE = "rest"
Expand Down

0 comments on commit 60998be

Please sign in to comment.