Skip to content

Commit eb26e52

Browse files
authored
Merge pull request #497 from aweng126/fix-enum-value
Fix incorrect EnumMember value for Yaml
2 parents 15075f2 + 47401bc commit eb26e52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runner/Synapse.Runner/WorkflowOutputFormat.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public enum WorkflowOutputFormat
2828
/// <summary>
2929
/// Indicates that the workflow output should be formatted to YAML
3030
/// </summary>
31-
[EnumMember(Value = "json")]
31+
[EnumMember(Value = "yaml")]
3232
Yaml
3333
}

0 commit comments

Comments
 (0)