Commit 51c3773e authored by Jérome Perrin's avatar Jérome Perrin

recipe/libcloud: minimal fix for ImportError

This code error when it's imported, because it imports from a non existing,
slapos.tool module.
This is an "emergency commit" to repair the tests on python 3 after
 3a1e5628 (software/slapos-sr-testing: use nxdtest, 2020-10-28)
parent b77d7bae
Pipeline #12549 failed with stage
in 0 seconds
...@@ -4,7 +4,6 @@ import sys ...@@ -4,7 +4,6 @@ import sys
import zc.buildout import zc.buildout
import zc.recipe.egg import zc.recipe.egg
from slapos.slap.slap import ServerError from slapos.slap.slap import ServerError
from slapos.tool.cloudmgr.cloudinterface import NodeInterface
from pprint import pformat from pprint import pformat
class SlavePartitionError(Exception): class SlavePartitionError(Exception):
pass pass
...@@ -87,6 +86,8 @@ class Recipe(BaseSlapRecipe): ...@@ -87,6 +86,8 @@ class Recipe(BaseSlapRecipe):
node_uuid = connection_dict.get('node_uuid', None), node_uuid = connection_dict.get('node_uuid', None),
ssh_key = connection_dict.get('ssh_key', None) ssh_key = connection_dict.get('ssh_key', None)
) )
# FIXME: this import no longer exist
from slapos.tool.cloudmgr.cloudinterface import NodeInterface
node = NodeInterface(**node_kw) node = NodeInterface(**node_kw)
update_kw = dict( update_kw = dict(
image = requested_dict['image'], image = requested_dict['image'],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment