Skip to content

Commit 5e7ced6

Browse files
committed
Update to latest Hugo version, move Hugo config to yaml, update folder structure, update partials.
Signed-off-by: Marc Duiker <marcduiker@users.noreply.github.com>
1 parent c44e56b commit 5e7ced6

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-patterns.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -627,9 +627,9 @@ await context.CallActivityAsync("PostResults", sum);
627627
With the release of 1.16, it's even easier to process workflow activities in parallel while putting an upper cap on
628628
concurrency by using the following extension methods on the `WorkflowContext`:
629629
630-
{{< tabs ".NET" >}}
630+
{{% tabpane %}}
631631
632-
{{% codetab %}}
632+
{{% tab header=".NET" %}}
633633
<!-- .NET -->
634634
```csharp
635635
//Revisiting the earlier example...
@@ -643,9 +643,9 @@ var sum = results.Sum(t => t);
643643
await context.CallActivityAsync("PostResults", sum);
644644
```
645645
646-
{{% /codetab %}}
646+
{{% /tab %}}
647647
648-
{{< /tabs >}}
648+
{{% /tabpane %}}
649649
650650
Limiting the degree of concurrency in this way can be useful for limiting contention against shared resources. For example, if the activities need to call into external resources that have their own concurrency limits, like a databases or external APIs, it can be useful to ensure that no more than a specified number of activities call that resource concurrently.
651651

daprdocs/content/en/reference/components-reference/supported-bindings/gcpbucket.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -237,22 +237,22 @@ The metadata parameters are:
237237

238238
#### Example
239239

240-
{{< tabs Windows Linux >}}
240+
{{% tabpane text=true %}}
241241

242-
{{% codetab %}}
242+
{{% tab header="Windows" %}}
243243
```bash
244244
curl -d '{ \"operation\": \"bulkget\"}' http://localhost:<dapr-port>/v1.0/bindings/<binding-name>
245245
```
246-
{{% /codetab %}}
246+
{{% /tab %}}
247247

248-
{{% codetab %}}
248+
{{% tab header="Linux" %}}
249249
```bash
250250
curl -d '{ "operation": "bulkget"}' \
251251
http://localhost:<dapr-port>/v1.0/bindings/<binding-name>
252252
```
253-
{{% /codetab %}}
253+
{{% /tab %}}
254254

255-
{{< /tabs >}}
255+
{{% /tabpane %}}
256256

257257
#### Response
258258

0 commit comments

Comments
 (0)