From 7afdf5e9f856eb0e82c9f21707524dbda476811c Mon Sep 17 00:00:00 2001 From: Mayank Agarwal Date: Sat, 31 Aug 2013 08:40:45 -0700 Subject: [PATCH] Correct status in options.h from WouldBlock to Incomplete Summary: WouldBlock was an internediate statue but was changed to Incomplete Test Plan: visual Reviewers: dhruba Differential Revision: https://reviews.facebook.net/D12651 --- include/rocksdb/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rocksdb/options.h b/include/rocksdb/options.h index 8e66811ac..6d028e256 100644 --- a/include/rocksdb/options.h +++ b/include/rocksdb/options.h @@ -589,7 +589,7 @@ struct ReadOptions { // Specify if this read request should process data that ALREADY // resides on a particular cache. If the required data is not - // found at the specified cache, then Status::WouldBlock is returned. + // found at the specified cache, then Status::Incomplete is returned. // Default: kReadAllTier ReadTier read_tier;