(retry_method: Any)
| 135 | |
| 136 | |
| 137 | def serialize_retry_method(retry_method: Any) -> Tuple[str, Tuple]: |
| 138 | if callable(retry_method): |
| 139 | return (serialize_func_name(retry_method), ()) |
| 140 | else: |
| 141 | return (serialize_func_name(retry_method[0]), retry_method[1]) |
| 142 | |
| 143 | |
| 144 | def get_timestamp( |
no test coverage detected