Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[xray] Fix heartbeat subscription for autoscaler #2498

Merged
merged 20 commits into from
Jul 28, 2018
Prev Previous commit
Next Next commit
fix
  • Loading branch information
ericl committed Jul 26, 2018
commit ec6ac418e99600e86cd60740a79cadfde3d82f72
2 changes: 0 additions & 2 deletions python/ray/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,6 @@ def process_messages(self, max_messages=10000):
max_messages: The maximum number of messages to process before
returning.
"""
print("PROCESS MESSAGES")
for _ in range(max_messages):
message = self.subscribe_client.get_message()
if message is None:
Expand All @@ -508,7 +507,6 @@ def process_messages(self, max_messages=10000):
# Parse the message.
channel = message["channel"]
data = message["data"]
print("MESSAGE", channel, data)

# Determine the appropriate message handler.
message_handler = None
Expand Down