Skip to content

Commit 5df624d

Browse files
Merge pull request #268160 from alexbuckgit/alexbuckgit/docutune-autopr-20240305-201911-3656794-ignore-build
[BULK] DocuTune - Fix code block formatting issues (part 12)
2 parents 9e0bf1a + 953f771 commit 5df624d

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

articles/cosmos-db/restore-account-continuous-backup.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ Before restoring the account, install the [latest version of Azure PowerShell](/
118118

119119
```azurepowershell
120120
Select-AzSubscription -Subscription <SubscriptionName>
121+
```
121122

122123
### <a id="trigger-restore-ps"></a>Trigger a restore operation for API for NoSQL account
123124

articles/data-factory/airflow-sync-github-repository.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@ Here are some API payload examples:
257257
"branch": <repo branch to sync>,
258258
"username": <username>,
259259
"credential": <personal access token>
260-
}```
260+
}
261+
```
261262

262263
- Git sync properties for ADO with service principal:
263264

@@ -270,7 +271,8 @@ Here are some API payload examples:
270271
"username": < service principal app id >,
271272
"credential": <service principal secret value>
272273
"tenantId": <service principal tenant id>
273-
}```
274+
}
275+
```
274276

275277
- Git sync properties for a GitHub public repo:
276278

@@ -280,7 +282,8 @@ Here are some API payload examples:
280282
"gitCredentialType": "None",
281283
"repo": <repo url>,
282284
"branch": <repo branch to sync>
283-
}```
285+
}
286+
```
284287

285288
## Import a private package with Git sync
286289

articles/virtual-machines/linux/tutorial-lemp-stack.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,11 @@ export MY_AZURE_USER=$(az account show --query user.name --output tsv)
6666
export FQDN="${MY_DNS_LABEL}.${REGION}.cloudapp.azure.com"
6767
```
6868

69-
<!--```bash
69+
<!--
70+
```bash
7071
export MY_AZURE_USER_ID=$(az ad user list --filter "mail eq '$MY_AZURE_USER'" --query "[0].id" -o tsv)
71-
```-->
72+
```
73+
-->
7274

7375
## Create a resource group
7476

articles/virtual-machines/workloads/oracle/oracle-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This section covers information about Oracle solutions based on virtual machine
3838
To get a list of currently available Oracle images, run the following command using
3939
Azure CLI or Azure Cloud Shell
4040

41-
``az vm image list --publisher oracle --output table –all``
41+
`az vm image list --publisher oracle --output table –all`
4242

4343
The images are bring-your-own-license. You're charged only for the costs of compute, storage, and networking incurred running a VM. You can also choose to build your solutions on a custom image that you create from scratch in Azure or upload a custom image from your on-premises environment.
4444
>[!IMPORTANT]
@@ -55,11 +55,11 @@ Oracle and Microsoft are collaborating to bring WebLogic Server to the Azure Mar
5555
**UDP multicast isn't supported**. Azure supports UDP unicasting, but not multicasting or broadcasting. Oracle WebLogic Server can rely on Azure UDP unicast capabilities. For best results relying on UDP unicast, we recommend that the WebLogic cluster size is kept static, or kept with no more than 10 managed servers.
5656
**Oracle WebLogic Server expects public and private ports to be the same for T3 access**. For example, when using Enterprise JavaBeans (EJB). Consider a multi-tier scenario where a service layer application is running on an Oracle WebLogic Server cluster consisting of two or more VMs, in a virtual network named SLWLS. The client tier is in a different subnet in the same virtual network, running a simple Java program trying to call EJB in the service layer. Because you must load balance the service layer, a public load-balanced endpoint needs to be created for the VMs in the Oracle WebLogic Server cluster. If the private port specified is different from the public port an error occurs. For example, if you use ``7006:7008``, the following error occurs because for any remote T3 access, Oracle WebLogic Server expects the load balancer port and the WebLogic managed server port to be the same.
5757

58-
``[java] javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://example.cloudapp.net:7006:``
58+
`[java] javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://example.cloudapp.net:7006:`
5959

60-
``Bootstrap to: example.cloudapp.net/138.91.142.178:7006' over: 't3' got an error or timed out]``
60+
`Bootstrap to: example.cloudapp.net/138.91.142.178:7006' over: 't3' got an error or timed out]`
6161

62-
In the preceding case, the client is accessing port 7006, which is the load balancer port, and the managed server is listening on 7008, which is the private port. This restriction is applicable only for T3 access, not HTTP.
62+
In the preceding case, the client is accessing port 7006, which is the load balancer port, and the managed server is listening on 7008, which is the private port. This restriction is applicable only for T3 access, not HTTP.
6363

6464
To avoid this issue, use one of the following workarounds:
6565

0 commit comments

Comments
 (0)