Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos.core
Commits
2b5711da
Commit
2b5711da
authored
Sep 01, 2020
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo
parent
656da801
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
slapos/slap/slap.py
slapos/slap/slap.py
+6
-6
No files found.
slapos/slap/slap.py
View file @
2b5711da
...
@@ -270,7 +270,7 @@ class OpenOrder(SlapRequester):
...
@@ -270,7 +270,7 @@ class OpenOrder(SlapRequester):
def
getInformation
(
self
,
partition_reference
):
def
getInformation
(
self
,
partition_reference
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not availble.'
)
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not avail
a
ble.'
)
raw_information
=
self
.
_hateoas_navigator
.
getHostingSubscriptionRootSoftwareInstanceInformation
(
partition_reference
)
raw_information
=
self
.
_hateoas_navigator
.
getHostingSubscriptionRootSoftwareInstanceInformation
(
partition_reference
)
software_instance
=
SoftwareInstance
()
software_instance
=
SoftwareInstance
()
# XXX redefine SoftwareInstance to be more consistent
# XXX redefine SoftwareInstance to be more consistent
...
@@ -381,7 +381,7 @@ class Computer(SlapDocument):
...
@@ -381,7 +381,7 @@ class Computer(SlapDocument):
def
getInformation
(
self
):
def
getInformation
(
self
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not availble.'
)
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not avail
a
ble.'
)
raw_information
=
self
.
_hateoas_navigator
.
_getComputer
(
reference
=
self
.
_computer_id
)
raw_information
=
self
.
_hateoas_navigator
.
_getComputer
(
reference
=
self
.
_computer_id
)
computer
=
Computer
(
self
.
_computer_id
)
computer
=
Computer
(
self
.
_computer_id
)
for
key
,
value
in
six
.
iteritems
(
raw_information
[
"data"
]):
for
key
,
value
in
six
.
iteritems
(
raw_information
[
"data"
]):
...
@@ -536,7 +536,7 @@ class ComputerPartition(SlapRequester):
...
@@ -536,7 +536,7 @@ class ComputerPartition(SlapRequester):
in the Instance tree of the current Computer Partition.
in the Instance tree of the current Computer Partition.
"""
"""
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not availble.'
)
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not avail
a
ble.'
)
instance_url
=
self
.
getMeUrl
()
instance_url
=
self
.
getMeUrl
()
raw_information
=
self
.
_hateoas_navigator
.
getRelatedInstanceInformation
(
raw_information
=
self
.
_hateoas_navigator
.
getRelatedInstanceInformation
(
...
@@ -772,7 +772,7 @@ class slap:
...
@@ -772,7 +772,7 @@ class slap:
return Token class object
return Token class object
"""
"""
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not availble.'
)
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not avail
a
ble.'
)
return
Token
(
return
Token
(
connection_helper
=
self
.
_connection_helper
,
connection_helper
=
self
.
_connection_helper
,
...
@@ -846,11 +846,11 @@ class slap:
...
@@ -846,11 +846,11 @@ class slap:
def
getOpenOrderDict
(
self
):
def
getOpenOrderDict
(
self
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not availble.'
)
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not avail
a
ble.'
)
return
self
.
_hateoas_navigator
.
getHostingSubscriptionDict
()
return
self
.
_hateoas_navigator
.
getHostingSubscriptionDict
()
def
getComputerDict
(
self
):
def
getComputerDict
(
self
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
if
not
getattr
(
self
,
'_hateoas_navigator'
,
None
):
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not availble.'
)
raise
Exception
(
'SlapOS Master Hateoas API required for this operation is not avail
a
ble.'
)
return
self
.
_hateoas_navigator
.
getComputerDict
()
return
self
.
_hateoas_navigator
.
getComputerDict
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment