Skip to content

Commit

Permalink
Oops! Clock.time gives seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre committed May 18, 2024
1 parent 3958fda commit d76ffd5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions synapse/util/task_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,25 +395,25 @@ async def _launch_task(self, task: ScheduledTask) -> None:
function = self._actions[task.action]

def _occasional_report(
task_log_context: LoggingContext, start_time: int
task_log_context: LoggingContext, start_time: float
) -> None:
"""
Helper to log a 'Task continuing' line every so often.
"""

current_time = int(self._clock.time())
current_time = self._clock.time()
calling_context = set_current_context(task_log_context)
try:
usage = task_log_context.get_resource_usage()
TaskScheduler._log_task_usage(
"continuing", task, usage, (current_time - start_time) * 0.001
"continuing", task, usage, current_time - start_time
)
finally:
set_current_context(calling_context)

async def wrapper() -> None:
with nested_logging_context(task.id) as log_context:
start_time = int(self._clock.time())
start_time = self._clock.time()
occasional_status_call = self._clock.looping_call(
_occasional_report,
TaskScheduler.OCCASIONAL_REPORT_INTERVAL_MS,
Expand Down Expand Up @@ -444,7 +444,7 @@ async def wrapper() -> None:
current_time = int(self._clock.time())
usage = log_context.get_resource_usage()
TaskScheduler._log_task_usage(
status.value, task, usage, (current_time - start_time) * 0.001
status.value, task, usage, current_time - start_time
)
occasional_status_call.stop()

Expand Down

0 comments on commit d76ffd5

Please sign in to comment.