From bfb397f44e3015c4a559b448249be624ff11df56 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Mon, 27 Jun 2016 20:01:02 -0700 Subject: [PATCH] Tell user to not interrupt migration process --- .../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 9523ca9d..a735f0f8 100644 --- a/src/blockstore/implementations/versioncounting/VersionCountingBlockStore.cpp +++ b/src/blockstore/implementations/versioncounting/VersionCountingBlockStore.cpp @@ -100,7 +100,7 @@ namespace blockstore { #ifndef CRYFS_NO_COMPATIBILITY void VersionCountingBlockStore::migrateFromBlockstoreWithoutVersionNumbers(BlockStore *baseBlockStore, const bf::path &integrityFilePath, uint32_t myClientId) { - std::cout << "Migrating file system for integrity features. This can take a while..." << std::flush; + std::cout << "Migrating file system for integrity features. Please don't interrupt this process. This can take a while..." << std::flush; KnownBlockVersions knownBlockVersions(integrityFilePath, myClientId); baseBlockStore->forEachBlock([&baseBlockStore, &knownBlockVersions] (const Key &key) { auto block = baseBlockStore->load(key);