Skip to content

Commit cd9b94f

Browse files
committed
BUG 35387562 - [35374133->14.1.1.0.14] RFA: C++ Client request timeouts then received the results of the failed requests from the servers
[git-p4: depot-paths = "//dev/release.cpp/coherence-cpp-v14.1.1.0/": change = 101107]
1 parent 25ee887 commit cd9b94f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/coherence/component/net/extend/PofChannel.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#include "coherence/util/Iterator.hpp"
2222
#include "coherence/util/LongArrayIterator.hpp"
2323
#include "coherence/util/SafeHashMap.hpp"
24-
#include "coherence/util/SparseArray.hpp"
2524

2625
#include "private/coherence/component/net/extend/AbstractPofRequest.hpp"
2726
#include "private/coherence/component/net/extend/PofConnection.hpp"
@@ -34,6 +33,8 @@
3433

3534
#include "private/coherence/security/SecurityHelper.hpp"
3635

36+
#include "private/coherence/util/HashArray.hpp"
37+
3738
#include "private/coherence/util/logging/Logger.hpp"
3839

3940
COH_OPEN_NAMESPACE4(coherence,component,net,extend)
@@ -52,11 +53,11 @@ using coherence::net::messaging::ConnectionException;
5253
using coherence::net::messaging::Response;
5354
using coherence::net::PriorityTask;
5455
using coherence::security::SecurityHelper;
56+
using coherence::util::HashArray;
5557
using coherence::util::HashMap;
5658
using coherence::util::Iterator;
5759
using coherence::util::LongArrayIterator;
5860
using coherence::util::SafeHashMap;
59-
using coherence::util::SparseArray;
6061

6162

6263
// ----- constructors -------------------------------------------------------
@@ -71,7 +72,7 @@ PofChannel::PofChannel()
7172
f_vMessageFactory(self()),
7273
m_fOpen(self(), false),
7374
m_hReceiver(self()),
74-
f_hlaRequest(self(), SparseArray::create()),
75+
f_hlaRequest(self(), HashArray::create()),
7576
f_hGateRequest(self(), ThreadGate::create()),
7677
f_vSerializer(self()),
7778
f_vSubject(self()),

0 commit comments

Comments
 (0)