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
f6f13590
Commit
f6f13590
authored
Aug 21, 2019
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_crm: Clean up script
Remove unused code and minor bug fixes
parent
731299cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
master/bt5/slapos_crm/SkinTemplateItem/portal_skins/slapos_crm_monitoring/SupportRequestModule_getMonitoringUrlList.py
...m_monitoring/SupportRequestModule_getMonitoringUrlList.py
+1
-12
No files found.
master/bt5/slapos_crm/SkinTemplateItem/portal_skins/slapos_crm_monitoring/SupportRequestModule_getMonitoringUrlList.py
View file @
f6f13590
...
@@ -4,7 +4,7 @@ portal = context.getPortalObject()
...
@@ -4,7 +4,7 @@ portal = context.getPortalObject()
support_request_list
=
portal
.
portal_catalog
(
support_request_list
=
portal
.
portal_catalog
(
portal_type
=
"Support Request"
,
portal_type
=
"Support Request"
,
simulation_state
=
[
"validated"
,
"
S
uspended"
],
simulation_state
=
[
"validated"
,
"
s
uspended"
],
)
)
hosting_subscription_list
=
[]
hosting_subscription_list
=
[]
...
@@ -14,14 +14,6 @@ for support_request in support_request_list:
...
@@ -14,14 +14,6 @@ for support_request in support_request_list:
monitor_instance_list
=
[]
monitor_instance_list
=
[]
def
getMonitorUrlFromUrlString
(
parameter_string
):
if
'url='
in
parameter_string
:
param_list
=
parameter_string
.
split
(
'&'
)
for
param
in
param_list
:
key
,
value
=
param
.
split
(
'='
)
if
key
==
'url'
:
return
value
for
hosting_subscription
in
hosting_subscription_list
:
for
hosting_subscription
in
hosting_subscription_list
:
if
hosting_subscription
is
None
:
if
hosting_subscription
is
None
:
...
@@ -32,9 +24,6 @@ for hosting_subscription in hosting_subscription_list:
...
@@ -32,9 +24,6 @@ for hosting_subscription in hosting_subscription_list:
instance
=
hosting_subscription
.
getPredecessorValue
()
instance
=
hosting_subscription
.
getPredecessorValue
()
if
instance
is
None
or
instance
.
getSlapState
()
in
(
'destroy_requested'
,
'stop_requested'
):
if
instance
is
None
or
instance
.
getSlapState
()
in
(
'destroy_requested'
,
'stop_requested'
):
o
=
newTempDocument
(
portal
,
"uid_%s"
%
instance
.
getId
())
o
.
edit
(
title
=
instance
.
getTitle
(),
monitor_url
=
instance
.
getSlapState
())
monitor_instance_list
.
append
(
o
)
continue
continue
parameter_dict
=
instance
.
getConnectionXmlAsDict
()
parameter_dict
=
instance
.
getConnectionXmlAsDict
()
...
...
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