From af2ffb3fc5f5745f55923ddac36b7c6aae81da39 Mon Sep 17 00:00:00 2001 From: gakin <gakin> Date: Mon, 24 Oct 2016 13:36:24 +0000 Subject: [PATCH] SSDM-4278: test_openbis_sync integration test complete start up of two AS servers excluding the copying of data stores SVN: 37185 --- integration-tests/test_openbis_sync.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/integration-tests/test_openbis_sync.py b/integration-tests/test_openbis_sync.py index f785eb73f99..3f0914dd46a 100755 --- a/integration-tests/test_openbis_sync.py +++ b/integration-tests/test_openbis_sync.py @@ -27,7 +27,7 @@ class TestCase(systemtest.testcase.TestCase): '''create harvester openbis (openbis2)''' self.installOpenbis(instanceName ='openbis2', technologies = ['screening', 'proteomics']) - openbis2 = self.createOpenbisController('openbis2') + openbis2 = self.createOpenbisController('openbis2', port = '8445') openbis2.setDummyAuthentication() openbis2.setDataStoreServerUsername('etlserver2') openbis2.createTestDatabase('openbis') @@ -44,8 +44,10 @@ class TestCase(systemtest.testcase.TestCase): openbis1.setDataStoreServerUsername('etlserver1') openbis1.allUp() - openbis2 = self.createOpenbisController(instanceName = 'openbis2', port = '8445', dropDatabases=False) + openbis2_port = '8445' + openbis2 = self.createOpenbisController(instanceName = 'openbis2', port = openbis2_port, dropDatabases=False) openbis2.setDataStoreServerPort('8446') + openbis2.setOpenbisPortDataStoreServer(openbis2_port) self.installHarvesterPlugin(openbis2) openbis2.setDataStoreServerUsername('etlserver2') openbis2.allUp() -- GitLab