Merge "Fix the error in the podscontroller."
[releng.git] / utils / test / testapi / 3rd_party / static / testapi-ui / components / pods / podsController.js
index a64c1f4..489fa8a 100644 (file)
                     details: ctrl.details
                 };
                 ctrl.podsRequest =
-                    $http.post(pods_url, body).error(function (error) {
+                    $http.post(pods_url, body).error(function (data, status) {
                         ctrl.showError = true;
-                        ctrl.error =
-                            'Error creating the new pod from server: ' +
-                            angular.toJson(error);
+                        if(status == 403){
+                            ctrl.error =
+                                'Error creating the new pod from server: Pod\'s name already exists'
+                        }
                     });
             }
             else{