~maas-committers/maas/trunk

« back to all changes in this revision

Viewing changes to src/maasserver/models/__init__.py

  • Committer: MAAS Lander
  • Author(s): Gavin Panella
  • Date: 2017-02-09 11:34:44 UTC
  • mfrom: (5695.2.5 notifications-creation)
  • Revision ID: maas_lander-20170209113444-rnskp42qr7t7d9lk
[r=blake-rouse][bug=][author=allenap] Switch the persistent error mechanism to use notifications as its back-end.

Previously it was using ComponentError, which this change also removes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
    'BootSourceSelection',
18
18
    'BridgeInterface',
19
19
    'CacheSet',
20
 
    'ComponentError',
21
20
    'Config',
22
21
    'Controller',
23
22
    'Device',
108
107
from maasserver.models.bootsourcecache import BootSourceCache
109
108
from maasserver.models.bootsourceselection import BootSourceSelection
110
109
from maasserver.models.cacheset import CacheSet
111
 
from maasserver.models.component_error import ComponentError
112
110
from maasserver.models.config import Config
113
111
from maasserver.models.dhcpsnippet import DHCPSnippet
114
112
from maasserver.models.discovery import Discovery