diff --git a/src/frontend/app/process/process.component.ts b/src/frontend/app/process/process.component.ts
index 0eebe7b5982206ecd2987019da6431a493156a7d..4a895b36361974a798cca816c61f426851b995ff 100755
--- a/src/frontend/app/process/process.component.ts
+++ b/src/frontend/app/process/process.component.ts
@@ -850,7 +850,8 @@ export class ProcessComponent implements OnInit, OnDestroy {
                 }
                 ),
                 catchError((err: any) => {
-                    this.notify.handleErrors(err);
+                    this.resourceFreezed = !this.resourceFreezed;
+                    this.notify.handleSoftErrors(err);
                     return of(false);
                 })
             ).subscribe();
@@ -868,7 +869,8 @@ export class ProcessComponent implements OnInit, OnDestroy {
             }
             ),
             catchError((err: any) => {
-                this.notify.handleErrors(err);
+                this.resourceBinded = !this.resourceBinded;
+                this.notify.handleSoftErrors(err);
                 return of(false);
             })
         ).subscribe();