This should be reentrant, has no side effects when called multiple times.
| 45 | |
| 46 | // This should be reentrant, has no side effects when called multiple times. |
| 47 | void S3KeyWriter::close() { |
| 48 | if (!this->uploadId.empty()) { |
| 49 | this->completeKeyWriting(); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | void S3KeyWriter::checkQueryCancelSignal() { |
| 54 | if (S3QueryIsAbortInProgress() && !this->uploadId.empty()) { |
no test coverage detected