MCPcopy
hub / github.com/abhi1693/openclaw-mission-control / utcnow

Function utcnow

backend/app/core/time.py:8–11  ·  view source on GitHub ↗

Return a naive UTC datetime without using deprecated datetime.utcnow().

()

Source from the content-addressed store, hash-verified

6
7
8def utcnow() -> datetime:
9 """Return a naive UTC datetime without using deprecated datetime.utcnow()."""
10 # Keep naive UTC values for compatibility with existing DB schema/queries.
11 return datetime.now(UTC).replace(tzinfo=None)

Callers 15

_touch_agent_presenceFunction · 0.90
accept_inviteFunction · 0.90
ensure_member_for_userFunction · 0.90
apply_invite_to_memberFunction · 0.90
update_agent_soulMethod · 0.90
run_lifecycleMethod · 0.90
mark_provision_requestedFunction · 0.90
mark_provision_completeFunction · 0.90
_rotate_agent_tokenFunction · 0.90

Calls

no outgoing calls