(20241209) Small failure view bug fix to show the 'logId' now.

This commit is contained in:
2024-12-09 12:42:28 +05:30
parent e2c9200941
commit a443a78e19
7 changed files with 239 additions and 234 deletions
+2 -2
View File
@@ -112,13 +112,13 @@ class CoreAuthTokenModel(BaseModel):
firstRequestTs: AwareDatetime = Field(
description = "the time (utc) at which authorization was first requested",
frozen = True,
default_factory = lambda: date_time.get_current_utc_date_time(as_string = False)
default = None
)
lastRequestTs: AwareDatetime = Field(
description = "the time (utc) at which authorization was last requested",
frozen = False,
default = None
default_factory = lambda: date_time.get_current_utc_date_time(as_string = False)
)
firstRefreshTs: AwareDatetime = Field(