You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
site-packages/harvesters/core.py:2314: DeprecationWarning: please consider to use timeout_period_on_client_fetch_call instead of timeout_on_client_fetch_call.
#403
Closed
HitoshiUchida opened this issue
Apr 5, 2023
· 1 comment
.local/share/virtualenvs/02_Main-auq7hWNs/lib/python3.10/site-packages/harvesters/core.py:2314: DeprecationWarning: please consider to use timeout_period_on_client_fetch_call instead of timeout_on_client_fetch_call.
timeout_on_client_fetch_call=self.timeout_on_client_fetch_call)
It can fix with,
for monitor in self._new_buffer_event_monitor_dict.values():
buffer = self._fetch(monitor=monitor,
# timeout_on_client_fetch_call=self.timeout_on_client_fetch_call)
timeout_on_client_fetch_call=self.timeout_period_on_client_fetch_call)
The text was updated successfully, but these errors were encountered:
Warining appear.
It can fix with,
The text was updated successfully, but these errors were encountered: