Skip to content

Commit

Permalink
Fix service start times to be utc.
Browse files Browse the repository at this point in the history
  • Loading branch information
apollo13 authored Dec 4, 2024
1 parent 7e7883e commit 71aaefe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nats/micro/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ async def start(self) -> None:
subject, cb=verb_handler
)

self._started = datetime.now()
self._started = datetime.utcnow()
await self._client.flush()

@overload
Expand Down

0 comments on commit 71aaefe

Please sign in to comment.