| 110 | } |
| 111 | |
| 112 | Future<Void> IAsyncFileSystem::incrementalDeleteFile(const std::string& filename, bool mustBeDurable) { |
| 113 | return uncancellable(incrementalDeleteHelper(filename, |
| 114 | mustBeDurable, |
| 115 | FLOW_KNOBS->INCREMENTAL_DELETE_TRUNCATE_AMOUNT, |
| 116 | FLOW_KNOBS->INCREMENTAL_DELETE_INTERVAL)); |
| 117 | } |
| 118 | |
| 119 | TEST_CASE("/fileio/incrementalDelete") { |
| 120 | // about 5GB |
no test coverage detected