Skip to content

Commit

Permalink
Remove meaningless params from cosmos example (pulumi#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailshilkov authored and stack72 committed Sep 23, 2019
1 parent 99f4614 commit 2ea5c9f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions azure-ts-cosmosapp-component/cosmosApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ export class CosmosApp extends pulumi.ComponentResource {
offerType: "Standard",
consistencyPolicy: {
consistencyLevel: "Session",
maxIntervalInSeconds: 5,
maxStalenessPrefix: 100,
},
enableMultipleWriteLocations: args.enableMultiMaster,
}, parentOpts);
Expand Down
2 changes: 0 additions & 2 deletions azure-ts-cosmosdb-logicapp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ const cosmosdbAccount = new azure.cosmosdb.Account("logicappdemo-cdb", {
geoLocations: [{ location: resourceGroup.location, failoverPriority: 0 }],
consistencyPolicy: {
consistencyLevel: "Session",
maxIntervalInSeconds: 5,
maxStalenessPrefix: 100,
},
});

Expand Down
2 changes: 0 additions & 2 deletions azure-ts-serverless-url-shortener-global/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ const account = new azure.cosmosdb.Account("UrlStore", {
offerType: "Standard",
consistencyPolicy: {
consistencyLevel: "Session",
maxIntervalInSeconds: 5,
maxStalenessPrefix: 100,
},
});

Expand Down

0 comments on commit 2ea5c9f

Please sign in to comment.