Skip to content
Snippets Groups Projects
Commit f96a535f authored by Jörn Friedrich Dreyer's avatar Jörn Friedrich Dreyer
Browse files

fix objectstore test execution

parent 42e9d49d
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ class Swift implements IObjectStore {
$this->container = $this->objectStoreService->getContainer($this->params['container']);
} catch (ClientErrorResponseException $ex) {
// if the container does not exist and autocreate is true try to create the container on the fly
if (isset($params['autocreate']) && $params['autocreate'] === true) {
if (isset($this->params['autocreate']) && $this->params['autocreate'] === true) {
$this->container = $this->objectStoreService->createContainer($this->params['container']);
} else {
throw $ex;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment