Commit 4251d35f authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Removed filesystem check for storage points of type 'portal'.

parent 293f5514
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ class StorageAMQPServer(AMQPServer):
            self.storageBasePath = requestBody["basePath"]
            self.storageHostname = requestBody["hostname"]

            if not os.path.exists(self.storageBasePath):
            if not os.path.exists(self.storageBasePath) and self.storageType != "portal":
                response = { "responseType": "ERROR",
                             "errorCode": 2,
                             "errorMsg": "Base path doesn't exist."}