Skip to content

Commit 3f58af1

Browse files
author
Matthew Fisher
committed
fix dop images function call
1 parent 3e39aba commit 3f58af1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/provider/digitalocean.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def _get_droplet_kwargs(node, conn):
9191
return {
9292
'name': node['id'],
9393
'size_id': _get_id(conn.sizes(), params.get('size', '4GB')),
94-
'image_id': _get_id(conn.images(show_all=False), params.get('image', 'deis-node-image')),
94+
'image_id': _get_id(conn.images(my_images=True), params.get('image', 'deis-node-image')),
9595
'region_id': _get_id(conn.regions(), params.get('region', 'San Francisco 1')),
9696
'ssh_key_ids': [str(_get_id(conn.all_ssh_keys(),
9797
"deis-{formation}-{layer}".format(**node)))],

0 commit comments

Comments
 (0)