Merge lp:~jtv/maas/1.5-bug-1302772 into lp:~maas-committers/maas/trunk

Proposed by Jeroen T. Vermeulen
Status: Superseded
Proposed branch: lp:~jtv/maas/1.5-bug-1302772
Merge into: lp:~maas-committers/maas/trunk
Diff against target: 21 lines (+9/-0) (has conflicts)
1 file modified
src/provisioningserver/custom_hardware/seamicro.py (+9/-0)
Text conflict in src/provisioningserver/custom_hardware/seamicro.py
To merge this branch: bzr merge lp:~jtv/maas/1.5-bug-1302772
Reviewer Review Type Date Requested Status
Andres Rodriguez (community) Needs Fixing
Review via email: mp+214550@code.launchpad.net

This proposal has been superseded by a proposal from 2014-04-07.

Commit message

Backport trunk r2235: Continue to accept (but do not use) the old “boot” section in pserv.yaml. Otherwise, upgrade breaks while parsing this file.

To post a comment you must log in.
Revision history for this message
Andres Rodriguez (andreserl) wrote :

There are conflicts in the branch

review: Needs Fixing

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/provisioningserver/custom_hardware/seamicro.py'
--- src/provisioningserver/custom_hardware/seamicro.py 2014-04-07 10:39:19 +0000
+++ src/provisioningserver/custom_hardware/seamicro.py 2014-04-07 14:25:30 +0000
@@ -24,8 +24,17 @@
24import urlparse24import urlparse
2525
26import provisioningserver.custom_hardware.utils as utils26import provisioningserver.custom_hardware.utils as utils
27<<<<<<< TREE
27from seamicroclient import exceptions as seamicro_exceptions28from seamicroclient import exceptions as seamicro_exceptions
28from seamicroclient.v2 import client as seamicro_client29from seamicroclient.v2 import client as seamicro_client
30=======
31from seamicroclient.v2 import (
32 client as seamicro_client,
33 )
34from seamicroclient import (
35 exceptions as seamicro_exceptions,
36 )
37>>>>>>> MERGE-SOURCE
2938
3039
31logger = logging.getLogger(__name__)40logger = logging.getLogger(__name__)