Skip to content

Commit f0de71b

Browse files
authored
Merge pull request #95553 from kovarikthomas/master
Fixed wrong partition key format for ARM and Bicep
2 parents cb46451 + 86e83c2 commit f0de71b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/cosmos-db/hierarchical-partition-keys.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -363,9 +363,9 @@ For example, assume we have a hierarchical partition key composed of **TenantId
363363
```bicep
364364
partitionKey: {
365365
paths: [
366-
'TenantId',
367-
'UserId',
368-
'SessionId'
366+
'/TenantId',
367+
'/UserId',
368+
'/SessionId'
369369
]
370370
kind: 'MultiHash'
371371
version: 2
@@ -377,9 +377,9 @@ partitionKey: {
377377
```json
378378
"partitionKey": {
379379
"paths": [
380-
"TenantId",
381-
"UserId",
382-
"SessionId"
380+
"/TenantId",
381+
"/UserId",
382+
"/SessionId"
383383
],
384384
"kind": "MultiHash",
385385
"version": 2

0 commit comments

Comments
 (0)