Skip to content

Commit

Permalink
fix(Core): Singularized the aggregate component of the types of cloud…
Browse files Browse the repository at this point in the history
… events produced by the application
  • Loading branch information
cdavernas committed Dec 4, 2024
1 parent 2e8ae7f commit 7fd2983
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Synapse.Core/SynapseDefaults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public static class Workflow
/// <summary>
/// Gets the type prefix for all workflow-related cloud events produced by Synapse
/// </summary>
public const string TypePrefix = CloudEvents.TypePrefix + "workflows.";
public const string TypePrefix = CloudEvents.TypePrefix + "workflow.";

/// <summary>
/// Exposes constants about the cloud event used to notify that a workflow started
Expand Down Expand Up @@ -235,7 +235,7 @@ public static class Task
/// <summary>
/// Gets the type prefix for all task-related cloud events produced by Synapse
/// </summary>
public const string TypePrefix = CloudEvents.TypePrefix + "tasks.";
public const string TypePrefix = CloudEvents.TypePrefix + "task.";

/// <summary>
/// Exposes constants about the cloud event used to notify that a task has been created
Expand Down

0 comments on commit 7fd2983

Please sign in to comment.