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
fix(multitenant): register CapabilityServiceFactory in the backend
ExecutorService declares a hard dependency on CAPABILITY_SERVICE, but the
langflow backend's register_all_service_factories() registered
ExecutorServiceFactory without CapabilityServiceFactory. The service manager
could not resolve the dependency when building ExecutorService, so every flow
run failed with NoFactoryRegisteredError / "ExecutorService is not available".
lfx's own bootstrap (get_factories) auto-discovers the capability factory, so
lfx run/serve were unaffected; only the backend's hand-maintained factory list
had drifted. Add a regression test asserting the backend registers a factory
for every ExecutorService dependency.
0 commit comments