79753427

Date: 2025-09-02 11:23:02
Score: 0.5
Natty:
Report link

This isn’t a bug, it’s just how LangGraph works. It runs nodes in supersteps (bulk-synchronous style). Since b and c are started in the same step, the engine waits for both to finish before moving on, which is why b2 doesn’t run until after c completes.

If you want b → b2 to continue right away (without waiting on c), you’ve got two options:

Both approaches avoid the global step barrier that’s currently holding things up.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: htrehrthtr