Oleksandr

Results 6 comments of Oleksandr

fixed in [#34](https://github.com/cr0hn/aiohttp-swagger/pull/34)

I've also noticed some issues with class based views: 1. setup_swagger doesn't understand wildcard '*' for method fileld (GET/POST/.. only) 2. I can't figure out how to distinguish methods within...

fixed in [#34](https://github.com/cr0hn/aiohttp-swagger/pull/34)

I'm experiencing the same issue with update: ``` async with self._engine.acquire() as conn: await conn.execute( user_accounts.update().where( user_accounts.c.user_id == user_id ).values(amount=new_amount) ) account = await conn.execute( user_accounts.select().where( user_accounts.c.user_id == user_id )...

``` user_accounts = sa.Table( 'user_accounts', metadata, sa.Column('id', sa.Integer, primary_key=True, autoincrement=True), sa.Column('user_id', sa.String(100), index=True, nullable=False), sa.Column('amount', sa.Integer, index=True, default=0), ) ```

there is a workaround for the issue: just put conn.execute('commit') why autocommit is set to False by default?!