Skip to content

Commit 03be3d5

Browse files
authored
Merge branch 'v1.14' into feature/3639-zeebe-command-throw-error-variables
2 parents 4d02b2e + 7ed0652 commit 03be3d5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ string randomString = GetRandomString();
199199
// DON'T DO THIS!
200200
Instant currentTime = Instant.now();
201201
UUID newIdentifier = UUID.randomUUID();
202-
string randomString = GetRandomString();
202+
String randomString = getRandomString();
203203
```
204204

205205
{{% /codetab %}}
@@ -246,7 +246,7 @@ string randomString = await context.CallActivityAsync<string>("GetRandomString")
246246
```java
247247
// Do this!!
248248
Instant currentTime = context.getCurrentInstant();
249-
Guid newIdentifier = context.NewGuid();
249+
Guid newIdentifier = context.newGuid();
250250
String randomString = context.callActivity(GetRandomString.class.getName(), String.class).await();
251251
```
252252

@@ -342,7 +342,7 @@ Do this:
342342

343343
```csharp
344344
// Do this!!
345-
string configuation = workflowInput.Configuration; // imaginary workflow input argument
345+
string configuration = workflowInput.Configuration; // imaginary workflow input argument
346346
string data = await context.CallActivityAsync<string>("MakeHttpCall", "https://example.com/api/data");
347347
```
348348

@@ -352,7 +352,7 @@ string data = await context.CallActivityAsync<string>("MakeHttpCall", "https://e
352352

353353
```java
354354
// Do this!!
355-
String configuation = ctx.getInput(InputType.class).getConfiguration(); // imaginary workflow input argument
355+
String configuration = ctx.getInput(InputType.class).getConfiguration(); // imaginary workflow input argument
356356
String data = ctx.callActivity(MakeHttpCall.class, "https://example.com/api/data", String.class).await();
357357
```
358358

@@ -362,7 +362,7 @@ String data = ctx.callActivity(MakeHttpCall.class, "https://example.com/api/data
362362

363363
```javascript
364364
// Do this!!
365-
const configuation = workflowInput.getConfiguration(); // imaginary workflow input argument
365+
const configuration = workflowInput.getConfiguration(); // imaginary workflow input argument
366366
const data = yield ctx.callActivity(makeHttpCall, "https://example.com/api/data");
367367
```
368368

daprdocs/content/en/reference/components-reference/supported-state-stores/setup-postgresql-v1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ spec:
5252
# Controls the default mode for executing queries. (optional)
5353
#- name: queryExecMode
5454
# value: ""
55-
# Uncomment this if you wish to use PostgreSQL as a state store for actors (optional)
55+
# Uncomment this if you wish to use PostgreSQL as a state store for actors or workflows (optional)
5656
#- name: actorStateStore
5757
# value: "true"
5858
```

daprdocs/content/en/reference/components-reference/supported-state-stores/setup-postgresql-v2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ spec:
5252
# Controls the default mode for executing queries. (optional)
5353
#- name: queryExecMode
5454
# value: ""
55-
# Uncomment this if you wish to use PostgreSQL as a state store for actors (optional)
55+
# Uncomment this if you wish to use PostgreSQL as a state store for actors or workflows (optional)
5656
#- name: actorStateStore
5757
# value: "true"
5858
```

0 commit comments

Comments
 (0)