Skip to content

Commit ceb9681

Browse files
committed
chore: fix
1 parent 35962c6 commit ceb9681

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rust/cubestore/cubestore/src/cachestore/cache_rocksstore.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,6 @@ impl CacheStore for RocksCacheStore {
10831083
),
10841084
batch_pipe,
10851085
)?;
1086-
10871086
if added {
10881087
let queue_payload_schema = QueueItemPayloadRocksTable::new(db_ref.clone());
10891088
queue_payload_schema.insert_with_pk(
@@ -1097,7 +1096,7 @@ impl CacheStore for RocksCacheStore {
10971096
)?;
10981097
}
10991098

1100-
(queue_item_row.id, true)
1099+
(queue_item_row.id, added)
11011100
};
11021101

11031102
Ok(QueueAddResponse {

0 commit comments

Comments
 (0)