File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -1319,16 +1319,17 @@ impl Resolver {
1319
1319
} ) ,
1320
1320
) => {
1321
1321
let sni_addr = sni_addr_template. replace ( "{}" , servername) ;
1322
- let tenant = stub_resolver. tenant ( & sni_addr) . await ;
1322
+ // let tenant = stub_resolver.tenant(&sni_addr).await;
1323
1323
let sni_addr = format ! ( "{sni_addr}:{port}" ) ;
1324
1324
let addr = lookup ( & sni_addr) . await ?;
1325
- if tenant. is_some ( ) {
1326
- debug ! ( "SNI header found for tenant {:?}" , tenant) ;
1327
- }
1325
+ // if tenant.is_some() {
1326
+ // debug!("SNI header found for tenant {:?}", tenant);
1327
+ // }
1328
1328
ResolvedAddr {
1329
1329
addr,
1330
1330
password : None ,
1331
- tenant,
1331
+ tenant : None ,
1332
+ // tenant,
1332
1333
}
1333
1334
}
1334
1335
_ => {
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ def app_password(email: str) -> str:
102
102
"--https-sni-resolver-template=materialized:6876" ,
103
103
# This will be turned off until we can resolve perf issues
104
104
# https://github.com/MaterializeInc/database-issues/issues/9700
105
- # "--pgwire-sni-resolver-template=materialized:6875",
105
+ "--pgwire-sni-resolver-template=materialized:6875" ,
106
106
"--tls-key=/secrets/balancerd.key" ,
107
107
"--tls-cert=/secrets/balancerd.crt" ,
108
108
"--internal-tls" ,
You can’t perform that action at this time.
0 commit comments