Alexander Vasin

Results 21 comments of Alexander Vasin

Linking [related issue](https://github.com/raml-org/raml-js-parser/issues/140). Awaiting [PR](https://github.com/raml-org/raml-js-parser/pull/176) to be resolved.

+1 Example №1 ``` ini [test] lvl1.value = value1 lvl1.lvl2.value1 = 1 ``` will return ``` javascript { 'lvl1.value': 'value1', 'lvl1.lvl2.value1': '1' } ``` Example №2 ``` ini [test][test1] lvl1.value...

@isaacs hm.. i expected to get deep parsed object in the first example: ``` { lvl1: { value : value1 lvl2 : { value1 : 1 } } } ```...

Hmmm.. did not work for me for schemas, imported using `schemas` keyword in the beginning of the file.

It seems that args are lost here: https://github.com/CanopyTax/asyncpgsa/blob/master/asyncpgsa/connection.py#L99

Yep, there is a problem on a OS X. Used following snippet: ```python from PIL import Image with open('example.jpg', 'rb') as f: image = Image.open(f) width, height = image.size offer_image...

@DonnaRosa Thank very much for your response! > Do you get this error with any image file? Seems to me like a broken jpeg file or maybe a broken connection...

As i understood, to implement multi-host dsn i need to execute `SHOW transaction_read_only;` command after `Connection` instance establishes connection. If command returns `on` - it means it is replicate, otherwise...

@elprans Thank you for response! Unfortunately link leading to the patch returns 404. So, for current postgresql versions master swich can be detected only via polling connections with `SHOW transaction_read_only`....

Thank you for advise! Periodic task does not look reliable, imagine it is being executed every 2 seconds. With 500 RPS we would have about ~1 thousand requests failed, until...