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 2020/08/18 19:58:12 UTC

[incubator-streampipes] 01/03: [hotfix] Remove pipeline from cache after storage

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

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

commit ca2b01123b33bf8f6e8d190671d32b7c60121a9b
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Tue Aug 18 21:42:56 2020 +0200

    [hotfix] Remove pipeline from cache after storage
---
 ui/src/app/editor/dialog/save-pipeline/save-pipeline.component.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/app/editor/dialog/save-pipeline/save-pipeline.component.ts b/ui/src/app/editor/dialog/save-pipeline/save-pipeline.component.ts
index 583666b..2c3142e 100644
--- a/ui/src/app/editor/dialog/save-pipeline/save-pipeline.component.ts
+++ b/ui/src/app/editor/dialog/save-pipeline/save-pipeline.component.ts
@@ -136,7 +136,7 @@ export class SavePipelineComponent implements OnInit {
     this.displaySuccess(data);
     this.hide();
     this.editorService.makePipelineAssemblyEmpty(true);
-    this.editorService.removePipelineFromCache();
+    this.editorService.removePipelineFromCache().subscribe();
     if (this.ShepherdService.isTourActive()) {
       this.ShepherdService.hideCurrentStep();
     }