Skip to content

Commit a2830c7

Browse files
committed
configs: Remove unnecessary =.
1 parent 9ef815d commit a2830c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/config/bridge_backend.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,19 +96,19 @@ impl BridgeBackendConfig {
9696
env.insert("PORT".to_string(), self.port.to_string());
9797
env.insert(
9898
"CORS_ORIGIN_PATTERN".to_string(),
99-
"=^http://localhost ".to_string(),
99+
"^http://localhost ".to_string(),
100100
);
101101

102102
env.insert("PGHOST".to_string(), self.pghost.clone());
103103
env.insert("PGPORT".to_string(), self.pgport.to_string());
104104
env.insert("PGUSER".to_string(), self.pguser.clone());
105105
env.insert("PGPASSWORD".to_string(), self.pgpassword.clone());
106106
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());
108108

109109
env.insert("REDIS_URL".to_string(), self.redis_url.clone());
110110

111-
env.insert("NETWORK".to_string(), "=regtest".to_string());
111+
env.insert("NETWORK".to_string(), "regtest".to_string());
112112
env.insert(
113113
"USER_TAKES_AFTER".to_string(),
114114
self.user_takes_after.clone(),

0 commit comments

Comments
 (0)