Paul Rysiavets

Results 37 comments of Paul Rysiavets
trafficstars

@devraj we are successfully using https://github.com/kai3341/celery-pool-asyncio for a few years now. not with `sqlalchemy` but with raw `asyncpg`/`cassandra` and `fastapi` here is minimal example repo (not mine, i just googled...

BTW, for the aio_pool to work on py 3.8 i had to modify typing (`Tuple` and `Dict`) and add a backport version of `aio.to_thread` - otherwise works decent(no concurrency support)...

i've debugged the code a bit yesterday. and now i have a few options: - either we ignore the 403 errors (not preferred, but could work) as some other ones...

you need to NOT to Over Quote > ddp subscribe somethings {\"keyname\":\"value\"}

> @KcTheMapper Are you trying to pass in a shapely polygon? I assume h3 only supports geojson-like coordinates it is quite the opposite. `shapely` _IS_ "geojson"-compliant, but `h3.Polygon` is the...

@ajfriend well, you asked for it 😅 Why not _just_ implement the `__geo_interface__`?! In the way python describes it. I see this link in my Google https://gist.github.com/sgillies/2217756 I think, most...

SSL is terminated in front of the Tomcat/docker server. so geoserver sees the requests as non-http. i am investigating this right now, as i have the same problem on aws+alb....

step one https://docs.geoserver.org/stable/en/user/configuration/globalsettings.html#use-headers-for-proxy-url but this seems to only configure the REST endpoints. "login" for is still "http"

@victorzinho i agree. In my case ssl is terminated in front of tomcat by aws application load balancer. After terminating ssl alb (and other proxies) add a header x-proto-.. (I...

`zip` in this case is an "Application Version" (or a source bundle) in terms of AWS ElasticBeanstalk. https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/applications-sourcebundle.html this is the stuff that you need to upload to ebTalk when...