Skip to content
Snippets Groups Projects
Commit b69c5083 authored by gakin's avatar gakin
Browse files

integration_tests, add method to set any DSS service.properties roperty to testcase.py

SVN: 37250
parent 88231f2d
No related branches found
No related tags found
No related merge requests found
...@@ -489,6 +489,10 @@ class OpenbisController(_Controller): ...@@ -489,6 +489,10 @@ class OpenbisController(_Controller):
def setDataStoreServerUsername(self, username): def setDataStoreServerUsername(self, username):
""" Sets the username of the Data Store Server. """ """ Sets the username of the Data Store Server. """
self.dssProperties['username'] = username self.dssProperties['username'] = username
def setDataStoreServerProperty(self, prop, val):
""" Can be used to set the value of any property in DSS service.properties """
self.dssProperties[prop] = val
def setAsMaxHeapSize(self, maxHeapSize): def setAsMaxHeapSize(self, maxHeapSize):
self._setMaxHeapSize("openBIS-server/jetty/etc/openbis.conf", maxHeapSize) self._setMaxHeapSize("openBIS-server/jetty/etc/openbis.conf", maxHeapSize)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment