File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,19 +96,19 @@ impl BridgeBackendConfig {
96
96
env. insert ( "PORT" . to_string ( ) , self . port . to_string ( ) ) ;
97
97
env. insert (
98
98
"CORS_ORIGIN_PATTERN" . to_string ( ) ,
99
- "= ^http://localhost " . to_string ( ) ,
99
+ "^http://localhost " . to_string ( ) ,
100
100
) ;
101
101
102
102
env. insert ( "PGHOST" . to_string ( ) , self . pghost . clone ( ) ) ;
103
103
env. insert ( "PGPORT" . to_string ( ) , self . pgport . to_string ( ) ) ;
104
104
env. insert ( "PGUSER" . to_string ( ) , self . pguser . clone ( ) ) ;
105
105
env. insert ( "PGPASSWORD" . to_string ( ) , self . pgpassword . clone ( ) ) ;
106
106
env. insert ( "PGDATABASE" . to_string ( ) , self . pgdatabase . clone ( ) ) ;
107
- env. insert ( "PGSSLMODE" . to_string ( ) , "= prefer" . to_string ( ) ) ;
107
+ env. insert ( "PGSSLMODE" . to_string ( ) , "prefer" . to_string ( ) ) ;
108
108
109
109
env. insert ( "REDIS_URL" . to_string ( ) , self . redis_url . clone ( ) ) ;
110
110
111
- env. insert ( "NETWORK" . to_string ( ) , "= regtest" . to_string ( ) ) ;
111
+ env. insert ( "NETWORK" . to_string ( ) , "regtest" . to_string ( ) ) ;
112
112
env. insert (
113
113
"USER_TAKES_AFTER" . to_string ( ) ,
114
114
self . user_takes_after . clone ( ) ,
You can’t perform that action at this time.
0 commit comments