Skip to content

Commit cb96ff0

Browse files
authored
Merge pull request #111676 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents 622e45b + d52cc24 commit cb96ff0

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

articles/active-directory/users-groups-roles/users-bulk-download.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Azure Active Directory (Azure AD) supports bulk user import (create) operations.
2222

2323
## Required permissions
2424

25-
To download the list of users from the Azure AD admin center, you must be signed in with a user assigned to one or more organization-level administrator roles in Azure AD. Guest inviter and application developer are not considered administrator roles.
25+
To download the list of users from the Azure AD admin center, you must be signed in with a user assigned to one or more organization-level administrator roles in Azure AD (User Administrator is the minimum role required). Guest inviter and application developer are not considered administrator roles.
2626

2727
## To download a list of users
2828

articles/azure-monitor/app/worker-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,9 @@ Following is the code for `TimedHostedService` where the background task logic r
204204
{
205205
_logger.LogWarning("A sample warning message. By default, logs with severity Warning or higher is captured by Application Insights");
206206
_logger.LogInformation("Calling bing.com");
207-
var res = await httpClient.GetAsync("https://bing.com");
207+
var res = httpClient.GetAsync("https://bing.com").GetAwaiter().GetResult();
208208
_logger.LogInformation("Calling bing completed with status:" + res.StatusCode);
209-
telemetryClient.TrackEvent("Bing call event completed");
209+
_telemetryClient.TrackEvent("Bing call event completed");
210210
}
211211
}
212212
}

articles/sql-database/sql-database-managed-instance-connect-app.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ For troubleshooting connectivity issues, review the following:
129129

130130
- If using VNet peering, ensure that you have followed the instructions for setting [Allow Gateway Transit and Use Remote Gateways](#connect-from-on-premises-with-vnet-peering).
131131

132+
- If using VNet peering to connect an Azure App Service hosted application, and the Managed Instance VNet has a public IP address range, make sure that your hosted application settings allow your outbound traffic to be routed to public IP networks. Follow the instructions in [Regional VNet Integration](../app-service/web-sites-integrate-with-vnet.md#regional-vnet-integration).
133+
132134
## Required versions of drivers and tools
133135

134136
The following minimal versions of the tools and drivers are recommended if you want to connect to Managed Instance:

0 commit comments

Comments
 (0)