Merge branch 'codex/fix-bug-in-waitforhttprequest-callback-handling' into develop/3.5.0

This commit is contained in:
Sipke Schoorstra 2025-05-20 11:35:12 +02:00
commit 96369c256e
No known key found for this signature in database
GPG key ID: 5C10502B28A4268F

View file

@ -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.
;
});
}
}