Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
asr2003 committed Dec 15, 2024
1 parent 5191fcb commit b00ca2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nativelink-store/src/gcs_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ impl GCSStore {
.build()
.expect("Failed to create reqwest client");

Ok::<std::string::String, E>(session_url);
Ok(session_url);
}

Err(make_err!(
Expand Down Expand Up @@ -342,7 +342,7 @@ impl StoreDriver for GCSStore {
{
let reader_clone = Arc::clone(&reader);
let tx = tx.clone();
spawn(async move {
spawn!(async move {
let buffer = vec![0u8; CHUNK_BUFFER_SIZE];
let mut reader = reader_clone.lock().await;

Expand Down

0 comments on commit b00ca2e

Please sign in to comment.