80 columns

More than 80 columns makes me kill kittens. One kitten per character.
parent a66e8a30
......@@ -413,12 +413,14 @@ class Slapgrid(object):
self.promise_timeout = promise_timeout
self.develop = develop
if software_release_filter_list is not None:
self.software_release_filter_list = software_release_filter_list.split(",")
self.software_release_filter_list = \
software_release_filter_list.split(",")
else:
self.software_release_filter_list= []
self.computer_partition_filter_list = []
if computer_partition_filter_list is not None:
self.computer_partition_filter_list = computer_partition_filter_list.split(",")
self.computer_partition_filter_list = \
computer_partition_filter_list.split(",")
def checkEnvironmentAndCreateStructure(self):
"""Checks for software_root and instance_root existence, then creates
......@@ -443,7 +445,8 @@ class Slapgrid(object):
updateFile(self.supervisord_configuration_path,
pkg_resources.resource_stream(__name__,
'templates/supervisord.conf.in').read() % dict(
supervisord_configuration_directory=self.supervisord_configuration_directory,
supervisord_configuration_directory=\
self.supervisord_configuration_directory,
supervisord_socket=os.path.abspath(self.supervisord_socket),
supervisord_loglevel='info',
supervisord_logfile=os.path.abspath(os.path.join(
......@@ -762,9 +765,11 @@ class Slapgrid(object):
xml_movements += "<movement>"
for children in movement.getchildren():
if children.tag == "reference":
xml_movements += "<%s>%s</%s>" % (children.tag, computer_partition_usage.getId(), children.tag)
xml_movements += "<%s>%s</%s>" % (children.tag,
computer_partition_usage.getId(), children.tag)
else:
xml_movements += "<%s>%s</%s>" % (children.tag, children.text, children.tag)
xml_movements += "<%s>%s</%s>" % (children.tag, children.text,
children.tag)
xml_movements += "</movement>"
xml_foot = "</transaction>" \
......@@ -858,13 +863,14 @@ class Slapgrid(object):
process_handler.kill()
if process_handler.returncode != 0:
clean_run = False
failed_script_list.append("Script %r failed with %s." % (script, result))
failed_script_list.append("Script %r failed with %s." % (script,
result))
logger.warning("Failed to run %r, the result was. \n%s" %
(invocation_list, result))
if len(failed_script_list):
computer_partition.error('\n'.join(failed_script_list))
#Now we loop through the different computer partitions to ggetId()et reports
#Now we loop through the different computer partitions to report
report_usage_issue_cp_list = []
for computer_partition in computer_partition_list:
filename_delete_list = []
......@@ -890,9 +896,11 @@ class Slapgrid(object):
#We check the validity of xml content of each reports
if not self.validateXML(usage, partition_consumption_model):
logger.info('WARNING: The XML file %s generated by slapreport is not valid - ' \
'This report is left as is at %s where you can inspect what went wrong ' % (filename, dir_reports))
#Warn the SlapOS Master that a partition generates corrupted xml report
logger.info('WARNING: The XML file %s generated by slapreport is '
'not valid - This report is left as is at %s where you can '
'inspect what went wrong ' % (filename, dir_reports))
# Warn the SlapOS Master that a partition generates corrupted xml
# report
else:
computer_partition_usage = self.slap.registerComputerPartition(
self.computer_id, computer_partition_id)
......
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