Skip to content

docs(power): step-operations.md uses incorrect string literals for step semantics instead of StepSemantics enum#176

Open
TrickSumo wants to merge 1 commit into
aws:mainfrom
TrickSumo:patch-6
Open

docs(power): step-operations.md uses incorrect string literals for step semantics instead of StepSemantics enum#176
TrickSumo wants to merge 1 commit into
aws:mainfrom
TrickSumo:patch-6

Conversation

@TrickSumo
Copy link
Copy Markdown
Contributor

issue

step-operations.md uses incorrect string literals for step semantics instead of StepSemantics enum

// Wrong
{ semantics: 'AT_LEAST_ONCE' }
{ semantics: 'AT_MOST_ONCE' }

Description of changes:

import { StepSemantics } from '@aws/durable-execution-sdk-js';

// Correct
{ semantics: StepSemantics.AtLeastOncePerRetry }
{ semantics: StepSemantics.AtMostOncePerRetry }

bug: step-operations.md uses incorrect string literals for step semantics instead of StepSemantics enum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant