fullergalway

Results 7 comments of fullergalway

As a workaround mosca publishing to `$SYS` topics can be turned off by configuration. The settings below are taken from [the kafka example](https://github.com/mcollina/mosca/blob/master/examples/kafka/server.js). ``` /* * avoid publishing to $SYS...

Hi, Kafka doesn't allow "/" in topics, so the ascoltatori uses "_" as separator. Following the ascoltatori pattern you should be able to pub/sub succesfully to topics foo/bar, /foo, and...

Also struggled with [this problem](https://github.com/apache/superset/issues/20914#issuecomment-1249466927) ```sh superset db upgrade ModuleNotFoundError: No module named 'wtforms.ext' ``` I found the installed superset (from an earlier attempt) was using a different python than...

I had the same problem, and solution provided by @CteixeiraPW seems to work; In my code I made this change. Before ``` createAuthRefreshInterceptor(api.axiosInstance, refreshAuthLogic(api)); ``` After ``` createAuthRefreshInterceptor(api.axiosInstance, refreshAuthLogic(api), {...

Yes it's definitely something which would is useful for us, and a wider audience for sure. @rusackas Evan you had previously mentioned having a couple Preset developers have a look...

Same error message trying to connect a hive database on preset.io "test connection" reports, "Connection looks good!", but "connect" triggers the error. ``` { "errors": [ { "message": "'str' object...

> "test connection" reports, "Connection looks good!", but "connect" triggers the error. The problem occurs in preset.io for me, but in my superset development environment there is no issue. (Reporting...