refactor: remove some url to string clones (#30247)

This commit is contained in:
David Sherret 2025-07-31 10:10:29 -04:00 committed by GitHub
parent 1715fc5a7a
commit ae6ac919de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 27 additions and 28 deletions

View file

@ -268,7 +268,7 @@ pub fn op_blob_create_object_url(
let url = blob_store
.insert_object_url(blob, maybe_location.map(|location| location.0.clone()));
Ok(url.to_string())
Ok(url.into())
}
#[op2(fast)]