Skip to content

Commit ab72538

Browse files
committed
Add events_max_delay setting for qubes-gui-daemon
Allows gubes-gui-daemon event buffering delay to be configured.
1 parent 2a57695 commit ab72538

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

qubesadmin/tools/qvm_start_daemon.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ def validator_color(color: str) -> bool:
110110
('startup_timeout', 'int', (lambda x: isinstance(x, int) and x >= 0)),
111111
('max_clipboard_size', 'int', \
112112
(lambda x: isinstance(x, int) and 256 <= x <= 256000)),
113+
('events_max_delay', 'int', (lambda x: isinstance(x, int) and x >= 0)),
113114
]
114115

115116
formatter = logging.Formatter(

0 commit comments

Comments
 (0)