Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2022-11-07 00:10:10 +0300
committerDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2022-11-07 00:10:10 +0300
commit280573809daaec62ff1d1ef53e5aa906a131bb87 (patch)
treef71b127c73d6c781f2fb1f8df2b63f641372f813
parent6d1cecdc46323a0fbb50e23f2c56d53891d1d8c4 (diff)
.......... [DEV-2329] fix
-rw-r--r--ui/tests/integration/testProxyConfSync.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/tests/integration/testProxyConfSync.php b/ui/tests/integration/testProxyConfSync.php
index 0dfb4dd3a3f..1c60efb4129 100644
--- a/ui/tests/integration/testProxyConfSync.php
+++ b/ui/tests/integration/testProxyConfSync.php
@@ -1530,6 +1530,19 @@ class testProxyConfSync extends CIntegrationTest
$this->loadInitialConfiguration();
+ $response = $this->call('host.get', [
+ 'output' => 'extend'
+ ]);
+ var_dump($response);
+ $response = $this->call('item.get', [
+ 'output' => 'extend'
+ ]);
+ var_dump($response);
+ $response = $this->call('trigger.get', [
+ 'output' => 'extend'
+ ]);
+ var_dump($response);
+
self::startComponent(self::COMPONENT_SERVER);
$this->waitForLogLineToBePresent(self::COMPONENT_SERVER, "End of DCsync_configuration()", true, 30, 1);
self::startComponent(self::COMPONENT_PROXY);