youngsol

Results 10 comments of youngsol

https://github.com/dpgaspar/Flask-AppBuilder/issues/759 seems same issue not has been solved.

@adrianmroz-allegro I believe it is fixed in 1.33. I can see whole code structures in model/datacube.ts is changed. I am leaving a comment for users who are using turnilo 1.32...

@adrianmroz-allegro I see that file name has changed. I was looking at wrong file lol. > Yes, because we don't have any information beside type. if the column is metric,...

@adrianmroz-allegro >If user set dimension or measure in config file, turnilo will respect your decision after introspection. It won't change it. That is correct. I am changing the default behavior...

``` FAB_SECURITY_MANAGER_CLASS = "app.security.manager.CustomSecurityManager" ``` I did not tried but building your own Security manager should work. Document below https://flask-appbuilder.readthedocs.io/en/latest/security.html#your-custom-security

updateSummaryState, this is for updated ticker. Whenever bittrex has updated ticker, you will receive message.

https://github.com/n0mad01/node.bittrex.api/files/1104308/WebSocketAPI_MarketTracking.docx Checkout this document.

Those are the 2 messages their websocket publish. UpdateSummaryState will send you the all the basic ticker information when updates are available. updateExchangeState will send you the "specific ticker" you...

Oops, that's right but I still don't see the producer_ssl_config in document neither in code. faust-streaming==0.10.10 https://github.com/faust-streaming/faust/blob/d9d2d3eef0538c3296f9b7bd2b32777ec4c1cc4d/faust/transport/drivers/aiokafka.py#L1078-L1119 Producer and consumer shares same ssl_context config

```python app = faust.App( 'test', broker_consumer=[server1,server2], broker_producer=[server3,server4], broker_credentials = faust.SSLCredentials(context="some_context") ) ``` There will be a problem if consumers and producers are set to use different security protocol since [server1.server2]...