@@ -14,12 +14,9 @@ use futures::{
1414 stream:: { self , BoxStream } ,
1515} ;
1616use object_store:: {
17- Attribute , AttributeValue , Attributes , , CredentialProvider ,
18- GetOptions , ObjectMeta , ObjectStore , PutMode , PutOptions , PutPayload ,
19- Attribute , AttributeValue , Attributes , BackoffConfig , ClientConfigKey ,
20- CredentialProvider , GetOptions , ObjectMeta , ObjectStore , PutMode ,
21- PutOptions , PutPayload , RetryConfig , StaticCredentialProvider ,
22- UpdateVersion ,
17+ Attribute , AttributeValue , Attributes , BackoffConfig , ClientConfigKey ,
18+ CredentialProvider , GetOptions , ObjectMeta , ObjectStore , PutMode , PutOptions ,
19+ PutPayload , RetryConfig , StaticCredentialProvider , UpdateVersion ,
2320 aws:: AmazonS3Builder ,
2421 azure:: { AzureConfigKey , MicrosoftAzureBuilder } ,
2522 gcp:: { GcpCredential , GoogleCloudStorageBuilder , GoogleConfigKey } ,
@@ -786,7 +783,10 @@ impl fmt::Display for HttpObjectStoreBackend {
786783
787784#[ typetag:: serde( name = "http_object_store_provider" ) ]
788785impl ObjectStoreBackend for HttpObjectStoreBackend {
789- fn mk_object_store ( & self ) -> Result < Arc < dyn ObjectStore > , StorageError > {
786+ fn mk_object_store (
787+ & self ,
788+ _settings : & Settings ,
789+ ) -> Result < Arc < dyn ObjectStore > , StorageError > {
790790 let builder = HttpBuilder :: new ( ) . with_url ( & self . url ) ;
791791
792792 // Add options
0 commit comments