This repository was archived by the owner on Apr 1, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
google/cloud/bigtable/data/_metrics Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ class TimeTuple:
5757 monotonic timestamp for calculating durations. The monotonic timestamp is
5858 preferred for calculations because it is resilient to clock changes, eg DST
5959 """
60+
6061 utc : datetime .datetime = field (
6162 default_factory = lambda : datetime .datetime .now (datetime .timezone .utc )
6263 )
@@ -124,6 +125,7 @@ class ActiveAttemptMetric:
124125 A dataclass representing the data associated with an rpc attempt that is
125126 currently in progress. Fields are mutable and may be optional.
126127 """
128+
127129 # keep both clock time and monotonic timestamps for active attempts
128130 start_time : TimeTuple = field (default_factory = TimeTuple )
129131 # the time it takes to recieve the first response from the server
@@ -434,7 +436,7 @@ async def __aenter__(self):
434436 Implements the async context manager protocol for wrapping unary calls
435437
436438 Using the operation's context manager provides assurances that the operation
437- is always closed when complete, with the proper status code automaticallty
439+ is always closed when complete, with the proper status code automaticallty
438440 detected when an exception is raised.
439441 """
440442 return self ._AsyncContextManager (self )
You can’t perform that action at this time.
0 commit comments