File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,6 @@ std::atomic<cb::mcbp::Status> last_status(cb::mcbp::Status::Success);
6565std::string last_key;
6666std::string last_body;
6767std::string last_ext;
68- bool last_deleted_flag (false );
69- std::atomic<uint8_t > last_conflict_resolution_mode (static_cast <uint8_t >(-1 ));
7068std::atomic<uint64_t > last_cas (0 );
7169std::atomic<uint8_t > last_datatype (0x00 );
7270ItemMetaData last_meta;
@@ -145,14 +143,6 @@ void decayingSleep(useconds_t *sleepTime) {
145143 *sleepTime = std::min (*sleepTime << 1 , maxSleepTime);
146144}
147145
148- ENGINE_ERROR_CODE vb_map_response (const void *cookie,
149- const void *map,
150- size_t mapsize) {
151- (void )cookie;
152- last_body.assign (static_cast <const char *>(map), mapsize);
153- return ENGINE_SUCCESS;
154- }
155-
156146bool add_response (const void * key,
157147 uint16_t keylen,
158148 const void * ext,
Original file line number Diff line number Diff line change @@ -62,9 +62,6 @@ void add_stats(const char* key,
6262 const uint32_t vlen,
6363 gsl::not_null<const void *> cookie);
6464
65- ENGINE_ERROR_CODE vb_map_response (const void *cookie, const void *map,
66- size_t mapsize);
67-
6865#ifdef __cplusplus
6966}
7067#endif
@@ -87,8 +84,6 @@ extern std::atomic<uint64_t> last_cas;
8784extern std::atomic<uint8_t > last_datatype;
8885extern std::atomic<uint64_t > last_uuid;
8986extern std::atomic<uint64_t > last_seqno;
90- extern bool last_deleted_flag;
91- extern std::atomic<uint8_t > last_conflict_resolution_mode;
9287extern ItemMetaData last_meta;
9388
9489extern uint8_t dcp_last_op;
You can’t perform that action at this time.
0 commit comments