|
a/Allura/allura/model/notification.py |
|
b/Allura/allura/model/notification.py |
|
... |
|
... |
33 |
from .types import ArtifactReferenceType
|
33 |
from .types import ArtifactReferenceType
|
34 |
|
34 |
|
35 |
|
35 |
|
36 |
log = logging.getLogger(__name__)
|
36 |
log = logging.getLogger(__name__)
|
37 |
|
37 |
|
38 |
MAILBOX_QUIESCENT=timedelta(minutes=10)
|
38 |
MAILBOX_QUIESCENT=None # Re-enable with [#1384]: timedelta(minutes=10)
|
39 |
|
39 |
|
40 |
class Notification(MappedClass):
|
40 |
class Notification(MappedClass):
|
41 |
class __mongometa__:
|
41 |
class __mongometa__:
|
42 |
session = main_orm_session
|
42 |
session = main_orm_session
|
43 |
name = 'notification'
|
43 |
name = 'notification'
|