Merge branch 'codex/fix-bug-in-waitforhttprequest-callback-handling' into develop/3.5.0
This commit is contained in:
commit
96369c256e
|
|
@ -40,7 +40,10 @@ public class ElsaFeature : FeatureBase
|
|||
.UseWorkflowManagement(management =>
|
||||
{
|
||||
if (!DisableAutomaticActivityRegistration)
|
||||
management.AddActivitiesFrom<WriteLine>();
|
||||
management
|
||||
.AddActivitiesFrom<WriteLine>()
|
||||
.RemoveActivity<ReadLine>() // ReadLine is not commonly used and can cause "hanging" containers when awaiting user input. Better to opt-in explicitly.
|
||||
;
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue