carloea2 opened a new issue, #8274: URL: https://github.com/apache/texera/issues/8274
### What happened? `OutputManager.get_port` ignores an explicit port ID and always returns the first output port. A worker with multiple output ports can therefore receive the wrong schema when it requests a nonfirst port. Unknown IDs are also silently treated as the first port. Expected behavior: an explicit port ID returns that port and an unknown ID fails clearly. Before: requesting port 1 returns port 0 After: requesting port 1 returns port 1 ### How to reproduce? Add two output ports with distinct schemas, then call `get_port` with the second port ID. The returned worker port contains the first schema. ### Version or branch 1.3.0-incubating-SNAPSHOT on main ### Commit hash 50321e403c82df299a13deb50a7f9849dd93bdba ### Browsers Not browser specific ### Relevant log output Requested port 1 but received the schema registered for port 0. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
