We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6777dd7 commit dd6429eCopy full SHA for dd6429e
roborock/api.py
@@ -116,8 +116,10 @@ def _async_response(
116
if request_id in self._waiting_queue:
117
new_id = get_next_int(10000, 32767)
118
_LOGGER.warning(
119
- f"Attempting to create a future with an existing request_id... New id is {new_id}. "
120
- f"Code may not function properly."
+ "Attempting to create a future with an existing id %s... New id is %s. "
+ "Code may not function properly.",
121
+ request_id,
122
+ new_id,
123
)
124
request_id = new_id
125
self._waiting_queue[request_id] = queue
0 commit comments