Commit 4a7eb0d4 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Replaced 'tapePool' with 'tapeHSMFilesystem' within the request body.

parent 51c5dcb0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ class StorageRPCServer(RedisRPCServer):
            storageType = requestBody["storageType"]
            storageBasePath = requestBody["basePath"]
            storageHostname = requestBody["hostname"]
            tapePool = requestBody["tapePool"]
            tapeHSMFilesystem = requestBody["tapeHSMFilesystem"]
            if not os.path.exists(storageBasePath):
                errorMsg = "Base path doesn't exist."
                self.logger.error(errorMsg)
@@ -72,7 +72,7 @@ class StorageRPCServer(RedisRPCServer):
                                                   storageBasePath,
                                                   storageHostname,
                                                   self.vospaceUserBasePath,
                                                   tapePool)
                                                   tapeHSMFilesystem)
            except Exception:
                errorMsg = "Database error."
                self.logger.exception(errorMsg)