File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ pub struct IndexerConfig {
150150pub  struct  DatabaseConfig  { 
151151    pub  postgres_url :  Url , 
152152    pub  postgres_host :  String , 
153-     pub  postgres_port :  String , 
153+     pub  postgres_port :  i32 , 
154154    pub  postgres_user :  String , 
155155    pub  postgres_password :  String , 
156156    pub  postgress_db :  String , 
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ impl From<MainConfig> for Config {
3333                Some ( value. database . postgres_url . into ( ) ) , 
3434                Some ( value. database . postgres_host ) , 
3535                Some ( value. database . postgres_password ) , 
36-                 Some ( value. database . postgres_port ) , 
36+                 Some ( value. database . postgres_port . to_string ( ) ) , 
3737                Some ( value. database . postgres_user ) , 
3838                Some ( value. database . postgress_db ) , 
3939            ) , 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments