From ee1f0f4d3a3f244acfd7a914fe3838c99f5d5b58 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Thu, 23 Jun 2016 22:32:19 -0700 Subject: [PATCH] Warn in migration that it might take a while --- .../versioncounting/VersionCountingBlockStore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockstore/implementations/versioncounting/VersionCountingBlockStore.cpp b/src/blockstore/implementations/versioncounting/VersionCountingBlockStore.cpp index 000131b4..3262e2fc 100644 --- a/src/blockstore/implementations/versioncounting/VersionCountingBlockStore.cpp +++ b/src/blockstore/implementations/versioncounting/VersionCountingBlockStore.cpp @@ -11,7 +11,7 @@ namespace blockstore { #ifndef CRYFS_NO_COMPATIBILITY void VersionCountingBlockStore::migrateFromBlockstoreWithoutVersionNumbers(BlockStore *baseBlockStore, const bf::path &integrityFilePath) { - std::cout << "Migrating file system for integrity features..." << std::flush; + std::cout << "Migrating file system for integrity features. This can take a while..." << std::flush; KnownBlockVersions knownBlockVersions(integrityFilePath); baseBlockStore->forEachBlock([&baseBlockStore, &knownBlockVersions] (const Key &key) { auto block = baseBlockStore->load(key);