From e6724eef7a442b0e3353f4398dd69d2f21ba2101 Mon Sep 17 00:00:00 2001 From: Matej Sekoranja Date: Wed, 3 Apr 2013 11:43:39 +0200 Subject: [PATCH] testApp/remote/testGetPerformance.cpp: removed flush() future option --- testApp/remote/testGetPerformance.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testApp/remote/testGetPerformance.cpp b/testApp/remote/testGetPerformance.cpp index 0795eba..cad1357 100644 --- a/testApp/remote/testGetPerformance.cpp +++ b/testApp/remote/testGetPerformance.cpp @@ -92,7 +92,7 @@ void get_all() (*i)->get(false); // we assume all channels are from the same provider - if (bulkMode) provider->flush(); + //if (bulkMode) provider->flush(); } @@ -371,7 +371,7 @@ int main (int argc, char *argv[]) Channel::shared_pointer channel = *i; shared_ptr channelRequesterImpl = dynamic_pointer_cast(channel->getChannelRequester()); - if (bulkMode) provider->flush(); + //if (bulkMode) provider->flush(); if (channelRequesterImpl->waitUntilConnected(5.0)) { String remoteAddress = channel->getRemoteAddress(); @@ -395,7 +395,7 @@ int main (int argc, char *argv[]) new ChannelGetRequesterImpl(channel->getChannelName()) ); ChannelGet::shared_pointer channelGet = channel->createChannelGet(getRequesterImpl, pvRequest); - if (bulkMode) provider->flush(); + //if (bulkMode) provider->flush(); allOK = getRequesterImpl->waitUntilConnected(timeOut);