()
| 1197 | } |
| 1198 | |
| 1199 | func shortWaitCache() CacheOptions { |
| 1200 | |
| 1201 | // cacheOptions := DefaultCacheOptions() |
| 1202 | cacheOptions := DefaultCacheOptions() |
| 1203 | cacheOptions.CachePendingSeqMaxWait = 5 * time.Millisecond |
| 1204 | cacheOptions.CachePendingSeqMaxNum = 50 |
| 1205 | cacheOptions.CacheSkippedSeqMaxWait = 2 * time.Minute |
| 1206 | return cacheOptions |
| 1207 | } |
| 1208 | |
| 1209 | func verifyCacheSequences(singleCache SingleChannelCache, sequences []uint64) bool { |
| 1210 |
no test coverage detected