Fix bogus call to run_as_background_process

pull/7453/head
Brendan Abolivier 2020-05-15 18:27:08 +02:00
parent cdd6fdd736
commit d3f609f926
No known key found for this signature in database
GPG Key ID: 1E015C145F1916CD
1 changed files with 4 additions and 1 deletions

View File

@ -539,7 +539,10 @@ class DeviceListUpdater(object):
# Attempt to resync out of sync device lists every 30s.
self._resync_retry_in_progress = False
self.clock.looping_call(
run_as_background_process, 30 * 1000, self._maybe_retry_device_resync,
run_as_background_process,
30 * 1000,
func=self._maybe_retry_device_resync,
desc="_maybe_retry_device_resync",
)
@trace