-
Notifications
You must be signed in to change notification settings - Fork 406
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19124c5
commit 57acc06
Showing
5 changed files
with
28 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
pub mod default_logstore; | ||
pub mod dynamodb_logstore; | ||
//! Contains the different logstore implementations for S3. | ||
//! - S3LogStore (used when copy-if-not-exists or unsafe_rename is passed) | ||
//! - S3DynamoDBLogStore (used when DynamoDB is the locking client) | ||
|
||
mod default_logstore; | ||
mod dynamodb_logstore; | ||
|
||
pub use default_logstore::default_s3_logstore; | ||
pub use default_logstore::S3LogStore; | ||
pub use dynamodb_logstore::RepairLogEntryResult; | ||
pub use dynamodb_logstore::S3DynamoDbLogStore; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters