Skip to content

Commit 27dfdc8

Browse files
fix incorrect conversion of entity event, causing nondeterminism failures on orchestrators (#462)
1 parent c1e25a4 commit 27dfdc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/Grpc/EntityConversions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public static DTCore.History.HistoryEvent EncodeUnlockSent(
138138
OrchestrationInstance? instance)
139139
{
140140
P.EntityUnlockSentEvent unlockSentEvent = protoEvent.EntityUnlockSent;
141-
string name = EncodeEventName(null);
141+
string name = "release";
142142
string input = JsonConvert.SerializeObject(
143143
new ReleaseMessage()
144144
{

0 commit comments

Comments
 (0)