fix pr check tests

This commit is contained in:
Asier Isayas
2024-04-09 11:43:24 -04:00
parent 16c7b2567b
commit a712193477
3 changed files with 2 additions and 3 deletions

View File

@@ -697,7 +697,7 @@ function useMongoProxyEndpoint(api: string): boolean {
];
let canAccessMongoProxy: boolean = userContext.databaseAccount.properties.publicNetworkAccess === "Enabled";
if (
configContext.MONGO_PROXY_ENDPOINT != MongoProxyEndpoints.Development &&
configContext.MONGO_PROXY_ENDPOINT !== MongoProxyEndpoints.Development &&
userContext.databaseAccount.properties.ipRules?.length > 0
) {
canAccessMongoProxy = canAccessMongoProxy && configContext.MONGO_PROXY_OUTBOUND_IPS_ALLOWLISTED;