lum4chi commented on PR #27476:
URL: https://github.com/apache/superset/pull/27476#issuecomment-2737164557
I managed to get this feature works with just 2 additional changes to
`superset/config.py`:
1. Enabling CORS and adding openstreetmap as origin:
```python
# CORS Options
ENABLE_CORS = True
CORS_OPTIONS: dict[Any, Any] = {
"origins": [
"https://c.tile.openstreetmap.org",
]
}
```
2. Appending openstreetmap also in `TALISMAN_CONFIG` (both prod and dev
config)
```python
"connect-src": [
"'self'",
"https://api.mapbox.com",
"https://events.mapbox.com",
"https://c.tile.openstreetmap.org",
],
```
Can be these the cause of the failing pipeline?
Anyway, thanks @fxprunayre for your work!
--
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]