Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions bluesky_queueserver_api/api_docstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -1530,6 +1530,15 @@ def condition(status):

Parameters
----------
size: int (optional)
The new size of the history. If the size is 0 or less, then the history is
cleared. If the size is greater than or equal to size of the queue, then the queue is
not modified and ``plan_history_uid`` remains unchanged. Otherwise the history is
trimmed to the desired size. Default: ``None``.
item_uid: str (optional)
If the history contains an item with **item_uid**, then the history is trimmed by
removing this item and all older items. If the item with **item_uid** is not found
then the history and **plan_history_uid** remain unchanged. Default: ``None``.
lock_key: str or None (optional)
The lock key enables access to the API when RE Manager queue is locked.
If the parameter is not ``None``, the key overrides the current lock key set by
Expand Down
Loading