| 555 | ACTOR Future<bool> checkSafeExclusions(Database cx, std::vector<AddressExclusion> exclusions); |
| 556 | |
| 557 | inline uint64_t getWriteOperationCost(uint64_t bytes) { |
| 558 | return bytes / std::max(1, CLIENT_KNOBS->WRITE_COST_BYTE_FACTOR) + 1; |
| 559 | } |
| 560 | |
| 561 | // Create a transaction to set the value of system key \xff/conf/perpetual_storage_wiggle. If enable == true, the value |
| 562 | // will be 1. Otherwise, the value will be 0. |
no outgoing calls
no test coverage detected