Skip to content

Commit

Permalink
Merge pull request #45 from windreamer/0.1.x
Browse files Browse the repository at this point in the history
set slave_id for TaskStatus
  • Loading branch information
windreamer authored Nov 30, 2016
2 parents f6f3270 + bd4b3d7 commit 5ef3179
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions pymesos/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def sendStatusUpdate(self, status):
msg.update.executor_id.MergeFrom(self.executor_id)
msg.update.slave_id.MergeFrom(self.slave_id)
msg.update.status.MergeFrom(status)
msg.update.status.slave_id.MergeFrom(self.slave_id)
msg.update.timestamp = time.time()
msg.update.uuid = status.uuid
return self.send(self.slave, msg)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = '0.1.6'
version = '0.1.7'

setup(
name='pymesos',
Expand Down

0 comments on commit 5ef3179

Please sign in to comment.