Alexander Vasin

Results 25 issues of Alexander Vasin

Is it possible to connect to several hosts (one master and replicas) from ConnectionPool (interface like libpq provides)? I mean the following: https://www.postgresql.org/docs/current/static/libpq-connect.html ``` # Read sessions postgresql://host1:123,host2:456/somedb?target_session_attrs=any # Read-write...

Assume we have two files `a.py` and `b.py`: a.py ```python FIRST_______________________________ = 1 SECOND______________________________ = 2 THIRD = 3 ``` b.py ```python from a import FIRST_______________________________ from a import SECOND______________________________...

I'm using HTML5 jQuery bundled balupton History.js plugin. It's working fine, but i need to have ability to use links like (works fine without History.js) http://website/url#popup=/url/some/more/params/ For a moment, if...

bug
confirmed
you can help

In example for [custom validation errors handling](https://github.com/maximdanilchenko/aiohttp-apispec#custom-error-handling) you raise HTTPException with body argument: ``` def my_error_handler( error: ValidationError, req: web.Request, schema: Schema, error_status_code: Optional[int] = None, error_headers: Optional[Mapping[str, str]] =...

Currently, if parent type has defined some default value, it is not possible to remove default facet. How that can be implemented?

Type: Question

Each type has a lot of facets, e.g. `displayName` and others. What should happen if we create derived type? Should we inherit only fields, that affect validation result? I mean...

Type: Question

According to documentation, there is two notations for type declaration: - multiple inheritance notation, wrapped with `[]` brackets - general notation (does not wrapped with `[]` brackets, but may be...

I get a lot of following errors on start: ``` { [Error: EISDIR: illegal operation on a directory, read] errno: -21, code: 'EISDIR', syscall: 'read' } { [Error: EISDIR: illegal...

What is the best way to specify this project in requirements? Can i use this project with ~= operator and specify it like `retry~=0.9.2`? From one hand, this library has...

Today caught issue with incompatibility asyncpgsa==0.26.1 with asyncpg==0.22.0 (but found that latest release works well!). So, i opened releases to see the diff between 0.26.1 and latest, but found the...