Skip to content

Commit

Permalink
Update aggregator.py on example code
Browse files Browse the repository at this point in the history
Same reason I changed previous commit, I guess "sever" is written wrongly instead of "server"
  • Loading branch information
donggook-me committed Oct 18, 2023
1 parent 3a8279e commit 15612d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/auxo/aggregator.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ def event_monitor(self):
break

# Handle events queued on the aggregator
elif len(self.sever_events_queue) > 0:
elif len(self.server_events_queue) > 0:

client_id, current_event, meta, data = self.sever_events_queue.popleft()
client_id, current_event, meta, data = self.server_events_queue.popleft()
logging.info(f"Event {current_event} is received from client {client_id}")
event_type, cohort_id = decode_msg(current_event)

Expand Down

0 comments on commit 15612d3

Please sign in to comment.