Ilya Scharrenbroich
Ilya Scharrenbroich
@thoran, this gem is named after a video store in the neighborhood where I grew up many years ago. I don't quite see what is so controversial about the name....
I solved this issue by defining the array property type from this: ``` ... @JsonProperty() coordinates: any[] = undefined; ... ``` to this: ``` ... @JsonProperty() coordinates: Array = undefined;...
@chetmancini how do you get the hdfs_path for EMR cluster?
Having same issue. Does this not work with requests package?
Fixing the routing.py file seemed to fix that issue by adding `.as_asgi()`: ``` application = ProtocolTypeRouter({ # (http->django views is added by default) "websocket": URLRouter([ url(r"^eel$", EelConsumer.as_asgi()), # do not...