Skip to content

Commit

Permalink
Increase queue for beacon and doors
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <[email protected]>
  • Loading branch information
aaronchongth committed Jul 17, 2024
1 parent bf7e10b commit c96e713
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api-server/api_server/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def _subscribe_all(self):
RmfDoorState,
"door_states",
lambda msg: rmf_events.door_states.on_next(DoorState.from_orm(msg)),
10,
100,
)
self._subscriptions.append(door_states_sub)

Expand Down Expand Up @@ -229,7 +229,7 @@ def convert_beacon_state(beacon_state: RmfBeaconState):
RmfBeaconState,
"beacon_state",
lambda msg: rmf_events.beacons.on_next(convert_beacon_state(msg)),
10,
100,
)
self._subscriptions.append(beacon_sub)

Expand Down

0 comments on commit c96e713

Please sign in to comment.