| 277 | } |
| 278 | |
| 279 | type transientOpenFailureClient struct { |
| 280 | litestream.ReplicaClient |
| 281 | remainingFailures int |
| 282 | openCount int |
| 283 | } |
| 284 | |
| 285 | func (c *transientOpenFailureClient) OpenLTXFile(ctx context.Context, level int, minTXID, maxTXID ltx.TXID, offset, size int64) (io.ReadCloser, error) { |
| 286 | c.openCount++ |
nothing calls this directly
no outgoing calls
no test coverage detected