Skip to content

Commit b68bf9a

Browse files
authored
Update container-recovery.md
1 parent 5f6d24a commit b68bf9a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-fluid-relay/how-tos/container-recovery.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ If the latest snapshot or subsequent changes are corrupt, Fluid may not be able
1818

1919
## Azure client APIs
2020

21-
## APIs for viewing and loading container versions
21+
### APIs for viewing and loading container versions
2222

23-
The AzureClient has the following methods to support this scenario.
23+
The AzureClient has the following methods to support this scenario:
2424

25-
### Get Container Versions
25+
#### Get container versions
2626

2727
`getContainerVersions(id, options?)`
2828

@@ -40,7 +40,7 @@ Retrieve a list of available versions that may be loaded from.
4040
* *Note*: This is different from the container ID, and specifically references a snapshot version rather than the container.
4141
* `date`: The timestamp when the version was generated.
4242

43-
### View Container Version
43+
#### View container version
4444

4545
`viewContainerVersion(id, containerSchema, version, compatibilityMode)`
4646

@@ -59,7 +59,7 @@ The container is loaded in a paused state, meaning it will not apply the subsequ
5959

6060
* `container`: The container object. This is the same type of object as the container object returned by `getContainer`, but is paused in its prior state from the selected version.
6161

62-
## Example
62+
### Example
6363

6464
```typescript
6565
const azureClient = new AzureClient(/* ... */);
@@ -87,7 +87,7 @@ We aren't recovering (rolling back) existing container. `copyContainer` will giv
8787

8888
New container is initially in `detached` state. We can continue working with detached container, or immediately attach. After calling `attach` we'll get back unique Container ID, representing newly created instance.
8989

90-
## Post-recovery considerations
90+
## Post-recovery considerations
9191

9292
When it comes to building use cases around post-recovery scenarios, here are couple of considerations on what application might want do to get its remote collaborators all working on the same container again.
9393

0 commit comments

Comments
 (0)