Skip to content

Commit 965e5e0

Browse files
committed
remote/coordinator: Fix typo to allow for reservations matching multiple tags
Signed-off-by: Maciej Grela <[email protected]>
1 parent a9a74af commit 965e5e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labgrid/remote/coordinator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ async def CreateReservation(self, request: labgrid_coordinator_pb2.CreateReserva
922922
await context.abort(grpc.StatusCode.INVALID_ARGUMENT, f"Key {k} is invalid")
923923
if not TAG_VAL.match(v):
924924
await context.abort(grpc.StatusCode.INVALID_ARGUMENT, f"Value {v} is invalid")
925-
fltr[k] = v
925+
fltr[k] = v
926926

927927
owner = self.clients[peer].name
928928
res = Reservation(owner=owner, prio=request.prio, filters=fltrs)

0 commit comments

Comments
 (0)