Skip to content

Commit

Permalink
fix(object store): ban streaming upload for azure blob storage (#16715)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcy-fdu authored May 27, 2024
1 parent 240f0b9 commit a0d7323
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,10 @@ impl ObjectStore for OpendalObjectStore {
}

fn support_streaming_upload(&self) -> bool {
self.op.info().native_capability().write_can_multi
match self.engine_type {
EngineType::Azblob => false,
_ => self.op.info().native_capability().write_can_multi,
}
}
}

Expand Down

0 comments on commit a0d7323

Please sign in to comment.