Skip to content

Commit f9cd8fe

Browse files
authored
merge: Merge pull request #194 from arunaengine/feat/multipart-finish
Aruna API version update and staging object finish functionality extension
2 parents 1f69d5a + 07608d7 commit f9cd8fe

File tree

10 files changed

+324
-162
lines changed

10 files changed

+324
-162
lines changed

Cargo.lock

+47-47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ license = "MIT OR Apache-2.0"
1414
[workspace.dependencies]
1515
ahash = "0.8.11"
1616
anyhow = "1.0.86"
17-
aruna-rust-api = "2.0.0"
17+
aruna-rust-api = "2.0.2"
1818
async-channel = "2.3.1"
1919
async-trait = "0.1.81"
20-
aws-config = "1.5.4"
21-
aws-sdk-s3 = "1.40.0"
20+
aws-config = "1.5.8"
21+
aws-sdk-s3 = "1.57.0"
2222
base64 = "0.22.1"
2323
cel-interpreter = "0.8.0"
2424
cel-parser = "0.7.0"

components/data_proxy/src/caching/grpc_query_handler.rs

+3
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ impl GrpcQueryHandler {
561561
content_len,
562562
hashes,
563563
completed_parts: vec![],
564+
upload_id: "".to_string(), // Upload id only needed in requests from users
564565
});
565566

566567
Self::add_token_to_md(req.metadata_mut(), token)?;
@@ -624,6 +625,7 @@ impl GrpcQueryHandler {
624625
content_len,
625626
hashes: proxy_object.get_hashes(), // Hashes stay the same
626627
completed_parts: vec![],
628+
upload_id: "".to_string(), // Upload id only needed in requests from users
627629
});
628630

629631
Self::add_token_to_md(req.metadata_mut(), token)?;
@@ -1314,6 +1316,7 @@ impl GrpcQueryHandler {
13141316
content_len,
13151317
hashes: vec![],
13161318
completed_parts: vec![],
1319+
upload_id: "".to_string(), // Upload id only needed in requests from users
13171320
});
13181321

13191322
Self::add_token_to_md(req.metadata_mut(), token)?;

components/data_proxy/src/structs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ impl User {
420420
}
421421
}
422422

423-
for (k, _) in &other.tokens {
423+
for k in other.tokens.keys() {
424424
if !self.tokens.contains_key(k) {
425425
to_delete.push(k.to_string());
426426
}

0 commit comments

Comments
 (0)