diqiu50 commented on code in PR #6013:
URL: https://github.com/apache/gravitino/pull/6013#discussion_r1898218180
##########
clients/filesystem-fuse/src/main.rs:
##########
@@ -16,18 +16,32 @@
* specific language governing permissions and limitations
* under the License.
*/
+use fuse3::Errno;
+use gvfs_fuse::config::AppConfig;
use gvfs_fuse::{gvfs_mount, gvfs_unmount};
-use log::info;
+use log::{error, info};
use tokio::signal;
#[tokio::main]
async fn main() -> fuse3::Result<()> {
tracing_subscriber::fmt().init();
- tokio::spawn(async { gvfs_mount("gvfs").await });
+
+ let config = AppConfig::from_file(Some("conf/gvfs_fuse.toml)"));
Review Comment:
That's not implemented. we need to read config file path from app arguments.
--
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]