The GitHub Actions job "Backport Checks" on texera.git/fix-network-graph-node-set has failed. Run started by GitHub user Yicong-Huang (triggered by Yicong-Huang).
Head commit for run: 629384c76ab4567e6d075606196da42a0d9299d4 / kary zheng <[email protected]> fix(visualization): take the union of Network Graph's two node columns The node set came from set(sources + destinations). On two pandas Series + is element-wise, so the set held each source glued to its destination rather than the union of the columns, and those glued values were added to the graph as nodes; the genuine nodes only arrived afterwards, with the edges. Every graph therefore carried one unconnected dot per distinct source-destination pair, reporting zero connections and indistinguishable from real data, and a pair of columns with different types aborted the run outright. Take the union instead, in first-appearance order: a set would reorder the nodes from run to run, which the seed added here is meant to stop. Closes #7325 Co-Authored-By: Claude Opus 5 (1M context) <[email protected]> Report URL: https://github.com/apache/texera/actions/runs/30979053868 With regards, GitHub Actions via GitBox
