You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2021/05/27 13:17:17 UTC

[incubator-streampipes] branch dev updated: [hotfix] Remove redundant call to display pipeline

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 4a3da0c  [hotfix] Remove redundant call to display pipeline
4a3da0c is described below

commit 4a3da0c7c8fb3a3158029496792ff995d28b29d9
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Thu May 27 15:17:02 2021 +0200

    [hotfix] Remove redundant call to display pipeline
---
 .../editor/components/pipeline-assembly/pipeline-assembly.component.ts  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/app/editor/components/pipeline-assembly/pipeline-assembly.component.ts b/ui/src/app/editor/components/pipeline-assembly/pipeline-assembly.component.ts
index ed3c629..3e3dbf9 100644
--- a/ui/src/app/editor/components/pipeline-assembly/pipeline-assembly.component.ts
+++ b/ui/src/app/editor/components/pipeline-assembly/pipeline-assembly.component.ts
@@ -245,7 +245,6 @@ export class PipelineAssemblyComponent implements OnInit {
             if (results[0] && results[0].length > 0) {
                 this.rawPipelineModel = results[0] as PipelineElementConfig[];
                 this.handleCanvasMetadataResponse(results[1]);
-                this.displayPipelineInEditor(!this.pipelineCanvasMetadataAvailable, this.pipelineCanvasMetadata);
             }
         });
     }
@@ -285,6 +284,7 @@ export class PipelineAssemblyComponent implements OnInit {
             this.ngZone.run(() => {
                 this.pipelineValid = this.PipelineValidationService
                     .isValidPipeline(this.rawPipelineModel.filter(pe => !(pe.settings.disabled)), false);
+                console.log(this.pipelineValid);
             });
         });
     }