cloudmesh / client

Deprecated: Version 3 of cloudmesh is a light weight cloud client to manage virtual clusters
http://cloudmesh.github.io/client
Other
3 stars 12 forks source link

KEY object has missing name #212

Closed laszewsk closed 8 years ago

laszewsk commented 8 years ago

The key object has an incorret db implementation as the "name" is actually missing.

instead it uses an incorrect "key_name"

class KEYCLOUDMAP(CloudmeshMixin, db.Base):

user = Column(String)
key_name = Column(String)
cloud_name = Column(String)
key_name_on_cloud = Column(String)

def __init__(self,
             user,
             name,
             category,
             name_on_cloud):
    self.user = user
    self.key_name = name
laszewsk commented 8 years ago

KEYCLOUDMAP has been removed, so this issue is no longer relevant