diff --git a/src/service/service/ServiceServiceServicerImpl.py b/src/service/service/ServiceServiceServicerImpl.py
index 37f72efdcbdfed682ffcbd3670cd8b7b0e406d89..b5623885f64169f3f32283c000d1b67ce03e4673 100644
--- a/src/service/service/ServiceServiceServicerImpl.py
+++ b/src/service/service/ServiceServiceServicerImpl.py
@@ -312,19 +312,19 @@ class ServiceServiceServicerImpl(ServiceServiceServicer):
                 pathcomp_request = PathCompRequest()
                 pathcomp_request.services.append(service_with_uuids)    # pylint: disable=no-member
 
-            if num_disjoint_paths is None or num_disjoint_paths in {0, 1} :
-                pathcomp_request.shortest_path.Clear()              # pylint: disable=no-member
-            else:
-                pathcomp_request.k_disjoint_path.num_disjoint = num_disjoint_paths  # pylint: disable=no-member
+                if num_disjoint_paths is None or num_disjoint_paths in {0, 1} :
+                    pathcomp_request.shortest_path.Clear()              # pylint: disable=no-member
+                else:
+                    pathcomp_request.k_disjoint_path.num_disjoint = num_disjoint_paths  # pylint: disable=no-member
 
-            pathcomp = PathCompClient()
-            pathcomp_reply = pathcomp.Compute(pathcomp_request)
-            pathcomp.close()
+                pathcomp = PathCompClient()
+                pathcomp_reply = pathcomp.Compute(pathcomp_request)
+                pathcomp.close()
 
-            # Feed TaskScheduler with this path computation reply. TaskScheduler identifies inter-dependencies among
-            # the services and connections retrieved and produces a schedule of tasks (an ordered list of tasks to be
-            # executed) to implement the requested create/update operation.
-            tasks_scheduler.compose_from_pathcompreply(pathcomp_reply, is_delete=False)
+                # Feed TaskScheduler with this path computation reply. TaskScheduler identifies inter-dependencies among
+                # the services and connections retrieved and produces a schedule of tasks (an ordered list of tasks to be
+                # executed) to implement the requested create/update operation.
+                tasks_scheduler.compose_from_pathcompreply(pathcomp_reply, is_delete=False)
 
         tasks_scheduler.execute_all()
         return service_with_uuids.service_id