Merge "Pass timeout as kwarg"
This commit is contained in:
1 changed files with 2 additions and 1 deletions
@@ -138,7 +138,8 @@ class GreenDBConnection(sqlite3.Connection):
timeout = BROKER_TIMEOUT
self.timeout = timeout
self.db_file = database
super(GreenDBConnection, self).__init__(database, 0, *args, **kwargs)
super(GreenDBConnection, self).__init__(
database, timeout=0, *args, **kwargs)
def cursor(self, cls=None):
if cls is None:
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.