CTTY commented on code in PR #2116:
URL: https://github.com/apache/iceberg-rust/pull/2116#discussion_r2875869472


##########
crates/catalog/hms/src/catalog.rs:
##########
@@ -194,9 +209,11 @@ impl HmsCatalog {
                 .build(),
         };
 
-        let file_io = FileIO::from_path(&config.warehouse)?
+        // Use provided factory or default to LocalFsStorageFactory
+        let factory = storage_factory.unwrap_or_else(|| 
Arc::new(LocalFsStorageFactory));

Review Comment:
   Updated hms catalog to throw error if storage factory is not configured



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to