gino-starlette icon indicating copy to clipboard operation
gino-starlette copied to clipboard

An extension for GINO to support Starlette server.

Results 8 gino-starlette issues
Sort by recently updated
recently updated
newest added

`gino.ext.starlette` should be replaced since lint tools work poorly with it ![image](https://user-images.githubusercontent.com/4182346/91521593-f9fd8700-e932-11ea-9de9-706fb28ad066.png)

## Expected Behavior I am trying to run the alembic make migrations and expected to succeed ## Actual Behavior exception is raised ## Steps to Reproduce the Problem 1. clone...

## Expected Behavior Describe what you were trying to get done and what you expected to happen. Cannot connect to the database; max retries reached. ERROR: Traceback (most recent call...

## Expected Behavior When canceling query, connection should be released back into pool. ## Actual Behavior After canceling query (and catching errors in code) gino_startlette stills throws error `asyncpg.exceptions.QueryCanceledError` when...

With `use_connection_for_request=True` and two DBs: ``` db1.init_app(app) db2.init_app(app) ``` And in the fastapi router, query db1 and db2. 1. Call the api 2. Change file contents to make it reload...

use [gino-mysql-support](https://github.com/wwwjfy/gino/tree/mysql-support ,"gino-mysql-support") Run error: TypeError: Invalid argument(s) 'min_size','max_size' sent to create_engine(), using configuration AiomysqlDialect/GinoEngine. Please check that the keyword arguments are appropriate for this combination of components. After repair...

## Tests using SQLite Hi all, I'm trying to make the Gino mock, but I keep seeing the error ```gino.exceptions.UninitializedError: Gino engine is not initialized.``` ## Code My code is...