mirror of
https://github.com/minio/minio.git
synced 2025-11-20 18:06:10 -05:00
Add xl-meta partial shard reconstruction (#19841)
Add partial shard reconstruction * Add partial shard reconstruction * Fix padding causing the last shard to be rejected * Add md5 checks on single parts * Move md5 verified to `verified/filename.ext` * Move complete (without md5) to `complete/filename.ext.partno` It's not pretty, but at least now the md5 gives some confidence it works correctly.
This commit is contained in:
@@ -59,7 +59,7 @@ func main() {
|
||||
}
|
||||
|
||||
// Prompt for decryption key if no --key or --private-key are provided
|
||||
if len(privateKey) == 0 {
|
||||
if len(privateKey) == 0 && !*stdin {
|
||||
reader := bufio.NewReader(os.Stdin)
|
||||
fmt.Print("Enter Decryption Key: ")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user