Skip to content

Commit 9e191c4

Browse files
committed
nit
1 parent 9ef5584 commit 9e191c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/catalog/rest/src/catalog.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,11 @@ impl RestCatalog {
290290
self.ctx
291291
.get_or_try_init(|| async {
292292
let client = HttpClient::new(&self.user_config)?;
293-
let catalog_config = RestCatalog::load_config(&client, &self.user_config).await?;
294-
let config = self.user_config.clone().merge_with_config(catalog_config);
295-
let client = client.update_with(&config)?;
293+
// let catalog_config = RestCatalog::load_config(&client, &self.user_config).await?;
294+
// let config = self.user_config.clone().merge_with_config(catalog_config);
295+
// let client = client.update_with(&config)?;
296296

297-
Ok(RestContext { config, client })
297+
Ok(RestContext { config: self.user_config.clone(), client })
298298
})
299299
.await
300300
}

0 commit comments

Comments
 (0)