Merge "Pass timeout as kwarg"

This commit is contained in:
Zuul
2024年07月25日 12:00:30 +00:00
committed by Gerrit Code Review

View File

@@ -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
openstack/swift
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.

The note is not visible to the blocked user.