Skip to content

Commit fa517e4

Browse files
committed
Set binary data on requests
1 parent 4d8b965 commit fa517e4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

crates/core/src/sync/interface.rs

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ pub struct StreamingSyncRequest {
6060
pub buckets: Vec<BucketRequest>,
6161
pub include_checksum: bool,
6262
pub raw_data: bool,
63+
pub binary_data: bool,
6364
pub client_id: String,
6465
pub parameters: Option<serde_json::Map<String, serde_json::Value>>,
6566
}

crates/core/src/sync/streaming_sync.rs

+1
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,7 @@ impl StreamingSyncIteration {
385385
buckets: requests,
386386
include_checksum: true,
387387
raw_data: true,
388+
binary_data: true,
388389
client_id: client_id(self.db)?,
389390
parameters: self.parameters.take(),
390391
};

0 commit comments

Comments
 (0)