You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tried to signal an entity from another entity, I was able to successfully but for the wrong entityId (it looks like casing matters, and the id was becoming "mycounter", all lowercase.
In an entity:
const entityId = new df.EntityId("MyCounter", "scenario");
context.df.signalEntity(entityId, "add");
In a durable client function:
// This was never hit
const entityId = new df.EntityId("MyCounter", "scenario");
const { entityState } = await client.readEntityState(entityId);
The text was updated successfully, but these errors were encountered:
When I tried to signal an entity from another entity, I was able to successfully but for the wrong entityId (it looks like casing matters, and the id was becoming "mycounter", all lowercase.
In an entity:
In a durable client function:
The text was updated successfully, but these errors were encountered: