@@ -2749,79 +2749,79 @@ module openflow {
27492749 this . errormessage = "" ;
27502750 await this . api . EnsureNoderedInstance ( this . userid , this . name ) ;
27512751 this . messages += "EnsureNoderedInstance completed" + "\n" ;
2752+ this . GetNoderedInstance ( ) ;
27522753 } catch ( error ) {
27532754 this . errormessage = error ;
27542755 this . messages += error + "\n" ;
27552756 console . error ( error ) ;
27562757 }
27572758 if ( ! this . $scope . $$phase ) { this . $scope . $apply ( ) ; }
2758- this . GetNoderedInstance ( ) ;
27592759 }
27602760 async DeleteNoderedInstance ( ) {
27612761 try {
27622762 this . errormessage = "" ;
27632763 await this . api . DeleteNoderedInstance ( this . userid , this . name ) ;
27642764 this . messages += "DeleteNoderedInstance completed" + "\n" ;
2765+ this . GetNoderedInstance ( ) ;
27652766 } catch ( error ) {
27662767 this . errormessage = error ;
27672768 this . messages += error + "\n" ;
27682769 console . error ( error ) ;
27692770 }
27702771 if ( ! this . $scope . $$phase ) { this . $scope . $apply ( ) ; }
2771- this . GetNoderedInstance ( ) ;
27722772 }
27732773 async DeleteNoderedPod ( instancename : string ) {
27742774 try {
27752775 this . errormessage = "" ;
27762776 await this . api . DeleteNoderedPod ( this . userid , instancename ) ;
27772777 this . messages += "DeleteNoderedPod completed" + "\n" ;
2778+ this . GetNoderedInstance ( ) ;
27782779 } catch ( error ) {
27792780 this . errormessage = error ;
27802781 this . messages += error + "\n" ;
27812782 console . error ( error ) ;
27822783 }
27832784 if ( ! this . $scope . $$phase ) { this . $scope . $apply ( ) ; }
2784- this . GetNoderedInstance ( ) ;
2785-
27862785 }
27872786 async RestartNoderedInstance ( ) {
27882787 try {
27892788 this . errormessage = "" ;
27902789 await this . api . RestartNoderedInstance ( this . userid , this . name ) ;
27912790 this . messages += "RestartNoderedInstance completed" + "\n" ;
2791+ this . GetNoderedInstance ( ) ;
27922792 } catch ( error ) {
27932793 this . errormessage = error ;
27942794 this . messages += error + "\n" ;
27952795 console . error ( error ) ;
27962796 }
27972797 if ( ! this . $scope . $$phase ) { this . $scope . $apply ( ) ; }
2798- this . GetNoderedInstance ( ) ;
27992798 }
28002799 async StartNoderedInstance ( ) {
28012800 try {
28022801 this . errormessage = "" ;
28032802 await this . api . StartNoderedInstance ( this . userid , this . name ) ;
28042803 this . messages += "StartNoderedInstance completed" + "\n" ;
2804+ this . GetNoderedInstance ( ) ;
28052805 } catch ( error ) {
28062806 this . errormessage = error ;
28072807 this . messages += error + "\n" ;
28082808 console . error ( error ) ;
28092809 }
28102810 if ( ! this . $scope . $$phase ) { this . $scope . $apply ( ) ; }
2811- this . GetNoderedInstance ( ) ;
28122811 }
28132812 async StopNoderedInstance ( ) {
28142813 try {
28152814 this . errormessage = "" ;
28162815 await this . api . StopNoderedInstance ( this . userid , this . name ) ;
28172816 this . messages += "StopNoderedInstance completed" + "\n" ;
2817+ this . GetNoderedInstance ( ) ;
28182818 } catch ( error ) {
28192819 this . errormessage = error ;
28202820 this . messages += error + "\n" ;
28212821 console . error ( error ) ;
28222822 }
28232823 if ( ! this . $scope . $$phase ) { this . $scope . $apply ( ) ; }
2824- this . GetNoderedInstance ( ) ;
2824+
28252825 }
28262826 async SendOne ( queuename : string , message : any ) : Promise < void > {
28272827 var result : any = await this . api . QueueMessage ( queuename , message ) ;
0 commit comments