betodealmeida commented on a change in pull request #17600:
URL: https://github.com/apache/superset/pull/17600#discussion_r759635563
##########
File path: superset/charts/commands/export.py
##########
@@ -63,6 +63,9 @@ def _export(model: Slice) -> Iterator[Tuple[str, str]]:
except json.decoder.JSONDecodeError:
logger.info("Unable to decode `params` field: %s",
payload["params"])
+ if payload.get("query_context"):
Review comment:
```python
payload = {
key: value
for key, value in payload.items()
if key not in REMOVE_KEYS
}
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]