File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ impl RestCatalogConfig {
101
101
} ;
102
102
103
103
let config = AwsConfig :: default ( ) . from_profile ( ) . from_env ( ) ;
104
- println ! ( "access_key_id {:?}" , config. access_key_id) ;
105
104
let loader = AwsDefaultLoader :: new ( self . client ( ) . unwrap_or_default ( ) , config) ;
106
105
let signer = AwsV4Signer :: new ( signing_name, signing_region) ;
107
106
Ok ( Some ( ( loader, signer) ) )
@@ -644,10 +643,7 @@ impl Catalog for RestCatalog {
644
643
/// provided locally to the `RestCatalog` will take precedence.
645
644
async fn load_table ( & self , table_ident : & TableIdent ) -> Result < Table > {
646
645
let context = self . context ( ) . await ?;
647
- println ! (
648
- "table_endpoint: {:?}" ,
649
- context. config. table_endpoint( table_ident)
650
- ) ;
646
+
651
647
let request = context
652
648
. client
653
649
. request ( Method :: GET , context. config . table_endpoint ( table_ident) )
You can’t perform that action at this time.
0 commit comments