Bug 63 - Avoid newline in Openmano instance create cloud config yaml 35/435/1
authorSuresh Balakrishnan <suresh.balakrishnan@riftio.com>
Wed, 28 Sep 2016 12:40:19 +0000 (08:40 -0400)
committerSuresh Balakrishnan <suresh.balakrishnan@riftio.com>
Wed, 28 Sep 2016 12:40:34 +0000 (08:40 -0400)
Signed-off-by: Suresh Balakrishnan <suresh.balakrishnan@riftio.com>
rwlaunchpad/plugins/rwnsm/rift/tasklets/rwnsmtasklet/openmano_nsm.py

index bdd5b32..5f30493 100644 (file)
@@ -390,8 +390,7 @@ class OpenmanoNsr(object):
                     if ip_profile:
                         openmano_instance_create["networks"][vld_msg.name]['ip-profile'] = ip_profile
 
-
-        return yaml.safe_dump(openmano_instance_create, default_flow_style=False)
+        return yaml.safe_dump(openmano_instance_create, default_flow_style=False,width=1000)
 
     @asyncio.coroutine
     def add_vlr(self, vlr):