Skip to content

Commit 058933a

Browse files
committed
Fix formatting issues
1 parent ec1376a commit 058933a

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

articles/machine-learning/v1/how-to-move-data-in-out-of-pipelines.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,10 @@ pipeline = Pipeline(workspace=ws, steps=[step1, step2])
227227
If you'd like to make your `OutputFileDatasetConfig` available for longer than the duration of your experiment, register it to your workspace to share and reuse across experiments.
228228

229229
```python
230-
step1_output_ds = step1_output_data.register_on_complete(name='processed_data',
231-
description = 'files from step1`)
230+
step1_output_ds = step1_output_data.register_on_complete(
231+
name='processed_data',
232+
description = 'files from step1'
233+
)
232234
```
233235

234236
## Delete `OutputFileDatasetConfig` contents when no longer needed

articles/mysql/migrate/mysql-on-premises-azure-db/06-test-plans.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ WHERE TABLE_SCHEMA = '{SchemaName}';
5656
5757
Execute the `count(*)` SQL statement against every table to get an accurate count of rows. Running this command can take a large amount of time on large tables. The following script generates a set of SQL statements that can be executed to get the exact counts:
5858

59-
```
59+
```sql
6060
SELECT CONCAT(
6161
'SELECT "',
6262
table_name,

articles/openshift/troubleshoot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Currently, the `RedHatOpenShift/OpenShiftClusters` resource that's automatically
2525

2626
## Creating a cluster results in error that no registered resource provider found
2727

28-
If creating a cluster results in an error that `No registered resource provider found for location '<location>' and API version '2019-04-30' for type 'openShiftManagedClusters'. The supported api-versions are '2018-09-30-preview`, then you were part of the preview and now need to [purchase Azure virtual machine reserved instances](https://aka.ms/openshift/buy) to use the generally available product. A reservation reduces your spend by pre-paying for fully managed Azure services. Refer to [*What are Azure Reservations*](../cost-management-billing/reservations/save-compute-costs-reservations.md) to learn more about reservations and how they save you money.
28+
If creating a cluster results in an error that `No registered resource provider found for location '<location>' and API version '2019-04-30' for type 'openShiftManagedClusters'. The supported api-versions are '2018-09-30-preview'.`, then you were part of the preview and now need to [purchase Azure virtual machine reserved instances](https://aka.ms/openshift/buy) to use the generally available product. A reservation reduces your spend by pre-paying for fully managed Azure services. For more information about reservations and how they save you money, see [What are Azure Reservations?](../cost-management-billing/reservations/save-compute-costs-reservations.md).
2929

3030
## Next steps
3131

articles/service-fabric/service-fabric-reliable-services-communication-remoting.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,7 @@ Follow these steps:
313313
To upgrade from V1 to V2 (interface compatible, known as V2_1), two-step upgrades are required. Follow the steps in this sequence.
314314

315315
> [!NOTE]
316-
> When upgrading from V1 to V2, ensure the `Remoting` namespace is updated to use V2. Example: 'Microsoft.ServiceFabric.Services.Remoting.V2.FabricTransport.Client`
317-
>
318-
>
316+
> When upgrading from V1 to V2, ensure the `Remoting` namespace is updated to use V2. Example: `Microsoft.ServiceFabric.Services.Remoting.V2.FabricTransport.Client`
319317
320318
1. Upgrade the V1 service to V2_1 service by using the following attribute.
321319
This change makes sure that the service is listening on the V1 and the V2_1 listener.

articles/spring-apps/how-to-access-data-plane-azure-ad-rbac.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ After the role is assigned, the assignee can access the Spring Cloud Config Serv
5454
>[!NOTE]
5555
> If you're using Azure China, replace `*.azuremicroservices.io` with `*.microservices.azure.cn`. For more information, see the section [Check endpoints in Azure](/azure/china/resources-developer-guide#check-endpoints-in-azure) in the [Azure China developer guide](/azure/china/resources-developer-guide).
5656
57-
1. Access the composed endpoint with the access token. Put the access token in a header to provide authorization: `--header 'Authorization: Bearer {TOKEN_FROM_PREVIOUS_STEP}`.
57+
1. Access the composed endpoint with the access token. Put the access token in a header to provide authorization: `--header 'Authorization: Bearer {TOKEN_FROM_PREVIOUS_STEP}'`.
5858
5959
For example:
6060
61-
a. Access an endpoint like *'https://SERVICE_NAME.svc.azuremicroservices.io/config/actuator/health'* to see the health status of Config Server.
61+
a. Access an endpoint like `https://SERVICE_NAME.svc.azuremicroservices.io/config/actuator/health` to see the health status of Config Server.
6262
63-
b. Access an endpoint like *'https://SERVICE_NAME.svc.azuremicroservices.io/eureka/eureka/apps'* to see the registered apps in Spring Cloud Service Registry (Eureka here).
63+
b. Access an endpoint like `https://SERVICE_NAME.svc.azuremicroservices.io/eureka/eureka/apps` to see the registered apps in Spring Cloud Service Registry (Eureka here).
6464
65-
If the response is *401 Unauthorized*, check to see if the role is successfully assigned. It will take several minutes for the role to take effect or to verify that the access token has not expired.
65+
If the response is `401 Unauthorized`, check to see if the role is successfully assigned. It will take several minutes for the role to take effect or to verify that the access token has not expired.
6666
6767
For more information about actuator endpoint, see [Production ready endpoints](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready-endpoints).
6868

0 commit comments

Comments
 (0)