Skip to content

Commit

Permalink
Debug reverted
Browse files Browse the repository at this point in the history
  • Loading branch information
Raalsky committed Aug 19, 2024
1 parent 1c2ca6e commit 0b65489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neptune_scale/core/components/operations_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def enqueue(self, *, operation: RunOperation) -> None:

with self._lock:
self._queue.put(
QueueElement(self._sequence_id, monotonic(), b"deadbeef" + serialized_operation),
QueueElement(self._sequence_id, monotonic(), serialized_operation),
block=True,
timeout=None,
)
Expand Down

0 comments on commit 0b65489

Please sign in to comment.