]> git.sur5r.net Git - bacula/bacula/commitdiff
baculum: Fix update pool action when no volumes in pool
authorMarcin Haba <marcin.haba@bacula.pl>
Sat, 28 Nov 2015 10:49:27 +0000 (11:49 +0100)
committerMarcin Haba <marcin.haba@bacula.pl>
Sat, 28 Nov 2015 10:49:27 +0000 (11:49 +0100)
gui/baculum/protected/Class/API.php
gui/baculum/protected/Class/Errors.php

index 47b59f3123e7c03075d000db811882f98606f072..ad7a0d7bc0751b03fd2e16532ef6423a63df8381 100644 (file)
@@ -30,7 +30,8 @@ class API extends TModule {
 
        private $allowedErrors = array(
                GenericError::ERROR_NO_ERRORS,
-               BconsoleError::ERROR_INVALID_COMMAND
+               BconsoleError::ERROR_INVALID_COMMAND,
+               PoolError::ERROR_NO_VOLUMES_IN_POOL_TO_UPDATE
        );
 
        private function getConnection() {
index 45e3d5841089c8771cf040c75fc15d095c3e7f30..410a3ca87890f86ec5d2ed53d48e862141c329f2 100644 (file)
@@ -77,7 +77,7 @@ class PoolError extends GenericError {
        const ERROR_NO_VOLUMES_IN_POOL_TO_UPDATE = 41;
 
        const MSG_ERROR_POOL_DOES_NOT_EXISTS = 'Pool with inputed poolid does not exist.';
-       const MSG_NO_VOLUMES_IN_POOL_TO_UPDATE= 'Pool with inputed poolid does not contain any volume to update.';
+       const MSG_ERROR_NO_VOLUMES_IN_POOL_TO_UPDATE= 'Pool with inputed poolid does not contain any volume to update.';
 }
 
 class JobError extends GenericError {
@@ -115,4 +115,4 @@ class BVFSError extends GenericError {
        const MSG_ERROR_JOB_DOES_NOT_EXISTS = 'Job with inputed jobid does not exist.';
        const MSG_ERROR_INVALID_PATH = 'Inputed path for restore is invalid. Proper format is b2[0-9]+.';
 }
-?>
\ No newline at end of file
+?>