Skip to content

Commit

Permalink
Fix broken test_raylet_info_endpoint (#9511)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkooo567 authored Jul 16, 2020
1 parent ac39e23 commit 41ad5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def GetProfilingStats(self, request, context):
with open(profiling_file_path, "r") as f:
profiling_stats = f.read()
return reporter_pb2.GetProfilingStatsReply(
profiling_stats=profiling_stats, stdout=stdout, stderr=stderr)
profiling_stats=profiling_stats, std_out=stdout, std_err=stderr)

def ReportMetrics(self, request, context):
# TODO(sang): Process metrics here.
Expand Down

0 comments on commit 41ad5de

Please sign in to comment.