avikam
avikam
The way I understand the guidelines, as [documented here](https://flask.palletsprojects.com/en/1.1.x/reqcontext/#manually-push-a-context), the **suggested** approach (don't know if it's the best one) was already mentioned by @stevenmanton Namely, if this is your view:...
yeah it might be two separate issues. the order issue can be reproduced with: ``` from tbl1 select { y, x } append ( from tbl2 select { y, x...
looking more into it, i _**think**_ the ordering issue can be reproduced even without an aggregation. Consider this example: ``` from tbl1 select { x, y } append (from tbl2...
@ajhunyady can you reproduce it with RUST_LOG=debug? specifically, I'd like to know if it happened because of a version discrepancy. For example, if you had fluvio running, and then restarted...
indeed it's the same issue. your log shows: ``` 2024-05-07T13:55:39.967622Z WARN install_only:launch_sc{host_name="127.0.0.1:9003" port=9003 pb=Indicatiff(ProgressBar)}:try_connect_to_sc{config=FluvioConfig { endpoint: "127.0.0.1:9003", use_spu_local_address: false, tls: Disabled, metadata: {}, client_id: None } platform_version=Version { major: 0,...
Iv'e been thinking to address it in two PRs: 1. stopgap: add a pre-check to the resume command to verify the versions match. This will remediate the bad user experience...
here is 1 before `bats`: https://github.com/infinyon/fluvio/pull/3999 seems like there is an alignment so I'll keep pursuing that