Uh oh!
There was an error while loading. Please reload this page.
Ensure dag.test uses serialized dag for testing - #56660
Conversation
tatiana
left a comment
There was a problem hiding this comment.
@ephraimbuddy Thanks a lot for working on this so quickly.
Would it be worth to update the PR description to mention it closes #56657?
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
ephraimbuddy
commented
Oct 15, 2025
Yes. Done. Thanks |
ephraimbuddy
commented
Oct 15, 2025
I noticed the task is failing when executing: |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
kaxil
left a comment
There was a problem hiding this comment.
Fundamental question: Should dag.test() create a temporary serialized DAG version like it was doing in one of the early 3.0.x version, or should it bypass the serialization requirement entirely?
Uh oh!
There was an error while loading. Please reload this page.
ephraimbuddy
commented
Oct 16, 2025
The command option( |
dstandish
commented
Oct 16, 2025
yeah is there much downside to just creating it? |
kaxil
commented
Oct 16, 2025
Yeah I am in favor of making it consistent to |
5d8bd17 to
5873cd6Compareephraimbuddy
commented
Oct 17, 2025
I have updated this PR to enable dag parsing in the dag.test method |
829c6cf to
d959325CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
d959325 to
5e9b466CompareUh oh!
There was an error while loading. Please reload this page.
957da39 to
fcc70fcCompareUh oh!
There was an error while loading. Please reload this page.
While `dag test` command uses serialized dag, dag.test was using in-memory serialized dag making direct usage of dag.test method resulting in error. This PR fixes this and ensures dag.test parses dag if the dag is not parsed
fcc70fc to
7f5e18cCompareUh oh!
There was an error while loading. Please reload this page.
* Ensure dag.test uses serialized dag for testing While `dag test` command uses serialized dag, dag.test was using in-memory serialized dag making direct usage of dag.test method resulting in error. This PR fixes this and ensures dag.test parses dag if the dag is not parsed * fixup! Ensure dag.test uses serialized dag for testing * Update query to v2 and do backcompat for 3.1 * Remove backcompat * Return previous behaviour with SerializedDag (cherry picked from commit 6d977a9)
…56820) * Ensure dag.test uses serialized dag for testing (#56660) * Ensure dag.test uses serialized dag for testing While `dag test` command uses serialized dag, dag.test was using in-memory serialized dag making direct usage of dag.test method resulting in error. This PR fixes this and ensures dag.test parses dag if the dag is not parsed * fixup! Ensure dag.test uses serialized dag for testing * Update query to v2 and do backcompat for 3.1 * Remove backcompat * Return previous behaviour with SerializedDag (cherry picked from commit 6d977a9) * fixup! Ensure dag.test uses serialized dag for testing (#56660)
* Ensure dag.test uses serialized dag for testing While `dag test` command uses serialized dag, dag.test was using in-memory serialized dag making direct usage of dag.test method resulting in error. This PR fixes this and ensures dag.test parses dag if the dag is not parsed * fixup! Ensure dag.test uses serialized dag for testing * Update query to v2 and do backcompat for 3.1 * Remove backcompat * Return previous behaviour with SerializedDag
* Ensure dag.test uses serialized dag for testing While `dag test` command uses serialized dag, dag.test was using in-memory serialized dag making direct usage of dag.test method resulting in error. This PR fixes this and ensures dag.test parses dag if the dag is not parsed * fixup! Ensure dag.test uses serialized dag for testing * Update query to v2 and do backcompat for 3.1 * Remove backcompat * Return previous behaviour with SerializedDag
While
dag testcommand uses serialized dag, dag.test was usingin-memory serialized dag making direct usage of dag.test method
resulting in error.
This PR fixes this and ensures dag.test parses dag if the dag is not
parsed
Closes: #56657