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
void complete_edge(std::shared_ptr<channel::IngressHandle> untyped_ingress) override
{
CHECK(untyped_ingress);
if (m_ingress != nullptr)
{
// todo(ryan) - we could specialize this exception, then if we catch it in segment::Builder::make_edge, we
// could enhance the error description and rethrow the same exception
throw exceptions::SrfRuntimeError(
"multiple edges to a source detected; use an operator to select proper behavior");
}
m_ingress = std::dynamic_pointer_cast<channel::Ingress<T>>(untyped_ingress);
CHECK(m_ingress);
}
Describe the bug
Kafka NLP run failure. Note this is using correct (not LFS) morpheus data files: labels/hash (per #242)
RuntimeError: multiple edges to a source detected; use an operator to select proper behavior
Steps/Code to reproduce bug
Expected behavior
Successful completion of pipeline run.
Environment overview (please complete the following information)
Environment details
https://gist.github.com/pdmack/8f9342321523251bf9ecdd8cd349a029
Additional context
Needed by #237
The text was updated successfully, but these errors were encountered: