Skip to content

Commit e698d79

Browse files
committed
cleanup
Signed-off-by: xxchan <xxchan22f@gmail.com>
1 parent d7430ee commit e698d79

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

crates/catalog/rest/src/catalog.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ impl RestCatalogConfig {
101101
};
102102

103103
let config = AwsConfig::default().from_profile().from_env();
104-
println!("access_key_id {:?}", config.access_key_id);
105104
let loader = AwsDefaultLoader::new(self.client().unwrap_or_default(), config);
106105
let signer = AwsV4Signer::new(signing_name, signing_region);
107106
Ok(Some((loader, signer)))
@@ -644,10 +643,7 @@ impl Catalog for RestCatalog {
644643
/// provided locally to the `RestCatalog` will take precedence.
645644
async fn load_table(&self, table_ident: &TableIdent) -> Result<Table> {
646645
let context = self.context().await?;
647-
println!(
648-
"table_endpoint: {:?}",
649-
context.config.table_endpoint(table_ident)
650-
);
646+
651647
let request = context
652648
.client
653649
.request(Method::GET, context.config.table_endpoint(table_ident))

0 commit comments

Comments
 (0)