@@ -25,7 +25,7 @@ use crate::{option::Config, storage::StorageMetadata};
2525
2626pub async fn print ( config : & Config , meta : & StorageMetadata ) {
2727 print_ascii_art ( ) ;
28- let scheme = config. parseable . get_scheme ( ) ;
28+ let scheme = config. options . get_scheme ( ) ;
2929 status_info ( config, & scheme, meta. deployment_id ) ;
3030 storage_info ( config) . await ;
3131 about:: print ( config, meta) . await ;
@@ -50,10 +50,10 @@ fn status_info(config: &Config, scheme: &str, id: Uid) {
5050 let address = format ! (
5151 "\" {}://{}\" ({}), \" :{}\" (livetail), \" :{}\" (flight protocol)" ,
5252 scheme,
53- config. parseable . address,
53+ config. options . address,
5454 scheme. to_ascii_uppercase( ) ,
55- config. parseable . grpc_port,
56- config. parseable . flight_port
55+ config. options . grpc_port,
56+ config. options . flight_port
5757 ) ;
5858
5959 let mut credentials =
@@ -63,7 +63,7 @@ fn status_info(config: &Config, scheme: &str, id: Uid) {
6363 credentials = "\" Using default creds admin, admin. Please set credentials with P_USERNAME and P_PASSWORD.\" " . red ( ) . to_string ( ) ;
6464 }
6565
66- let llm_status = match & config. parseable . open_ai_key {
66+ let llm_status = match & config. options . open_ai_key {
6767 Some ( _) => "OpenAI Configured" . green ( ) ,
6868 None => "Not Configured" . grey ( ) ,
6969 } ;
@@ -107,7 +107,7 @@ async fn storage_info(config: &Config) {
107107 config. staging_dir( ) . to_string_lossy( ) ,
108108 ) ;
109109
110- if let Some ( path) = & config. parseable . hot_tier_storage_path {
110+ if let Some ( path) = & config. options . hot_tier_storage_path {
111111 eprintln ! (
112112 "\
113113 {:8}Hot Tier: \" Enabled, Path: {}\" ",
0 commit comments