Skip to content

Commit 4f6eb61

Browse files
committed
Add WaitResponse:false to Memo and SA requests
1 parent c988cba commit 4f6eb61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Internal/Workflow/WorkflowContext.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ function (UpsertMemoInput $input): PromiseInterface {
484484
return resolve();
485485
}
486486

487-
$result = $this->request(new UpsertMemo($input->memo), false);
487+
$result = $this->request(new UpsertMemo($input->memo), false, false);
488488

489489
/** @psalm-suppress UnsupportedPropertyReferenceUsage $memo */
490490
$memo = &$this->input->info->memo;
@@ -513,7 +513,7 @@ function (UpsertSearchAttributesInput $input): PromiseInterface {
513513
return resolve();
514514
}
515515

516-
$result = $this->request(new UpsertSearchAttributes($input->searchAttributes), false);
516+
$result = $this->request(new UpsertSearchAttributes($input->searchAttributes), false, false);
517517

518518
/** @psalm-suppress UnsupportedPropertyReferenceUsage $sa */
519519
$sa = &$this->input->info->searchAttributes;
@@ -541,7 +541,7 @@ function (UpsertTypedSearchAttributesInput $input): PromiseInterface {
541541
return resolve();
542542
}
543543

544-
$result = $this->request(new UpsertTypedSearchAttributes($input->updates), false);
544+
$result = $this->request(new UpsertTypedSearchAttributes($input->updates), false, false);
545545

546546
// Merge changes
547547
$tsa = $this->input->info->typedSearchAttributes;

0 commit comments

Comments
 (0)