Skip to content

Commit 03ae02b

Browse files
authored
Merge pull request #640 from apollo13/patch-1
Fix service start times to be utc.
2 parents 3870d94 + 71aaefe commit 03ae02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nats/micro/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ async def start(self) -> None:
709709
subject, cb=verb_handler
710710
)
711711

712-
self._started = datetime.now()
712+
self._started = datetime.utcnow()
713713
await self._client.flush()
714714

715715
@overload

0 commit comments

Comments
 (0)