-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Operations maintained even when data list is overwritten #155
Comments
All rows are processed in order of inclusion. In this case, your I don't really know where the original If both deployments share the same initial dataset that they filter, you should consider storing the result of the filter operation under a different |
One workaround might be to force a new sheet to be loaded by using a unique sheet name instead of
|
@geoo89 I have created a failing unit test that replicates this issue. |
Something that @fagiothree and I discovered while looking at the crisis deployment. We have a scenario where the 'onboarding_data' is initially defined in this workbook in row 7. In this workbook there is a filter operation which filters out various rows.
https://docs.google.com/spreadsheets/d/1M3ohkdFNWzYQdMBdlnPP2_pi3RttKGXAvCUBgYLvuHA/edit?gid=0#gid=0
In the palestine deployment we have made a new 'onboarding_data' data list as shown in the below workbook in row 14.
https://docs.google.com/spreadsheets/d/1tLDsUe-NxOxpxOBuTJmopOnP9dOcmLVHjO2YQxGxe28/edit?gid=1353459808#gid=1353459808
So we are overwriting the data list, but we noticed that the filter operation from the first sheet is still being applied. @geoo89 could you outline what the process is here. I think desired behaviour would be that when we redefine a data list for a deployment, the only filter operations that we want to apply would be those that we specify on the new data list, not keep any existing operations that were in place on the old data list.
The text was updated successfully, but these errors were encountered: