Skip to content

Commit

Permalink
IGNITE-23594 Enhance object input stream filtering (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrov-mg authored Nov 14, 2024
1 parent be0abc7 commit 78478dc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public abstract class TcpDiscoveryS3IpFinderAbstractSelfTest
@Override protected TcpDiscoveryS3IpFinder ipFinder() throws Exception {
TcpDiscoveryS3IpFinder finder = new TcpDiscoveryS3IpFinder();

injectLogger(finder);
resources.inject(finder);

assert finder.isShared() : "Ip finder should be shared by default.";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public TcpDiscoveryS3IpFinderClientSideEncryptionSelfTest() throws Exception {

/** {@inheritDoc} */
@Override public void testIpFinder() throws Exception {
injectLogger(finder);
resources.inject(finder);

assert finder.isShared() : "Ip finder should be shared by default.";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public TcpDiscoveryS3IpFinderKeyPrefixSelfTest() throws Exception {
/** {@inheritDoc} */
@Test
@Override public void testIpFinder() throws Exception {
injectLogger(finder);
resources.inject(finder);

assert finder.isShared() : "Ip finder should be shared by default.";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public TcpDiscoveryAzureBlobStoreIpFinderSelfTest() throws Exception {
@Override protected TcpDiscoveryAzureBlobStoreIpFinder ipFinder() throws Exception {
TcpDiscoveryAzureBlobStoreIpFinder finder = new TcpDiscoveryAzureBlobStoreIpFinder();

injectLogger(finder);
resources.inject(finder);

assert finder.isShared() : "Ip finder must be shared by default.";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private void testCloudProvider(String provider) throws Exception {

TcpDiscoveryCloudIpFinder ipFinder = new TcpDiscoveryCloudIpFinder();

injectLogger(ipFinder);
resources.inject(ipFinder);

ipFinder.setProvider(provider);
ipFinder.setIdentity(IgniteCloudTestConfiguration.getAccessKey(provider));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public TcpDiscoveryGoogleStorageIpFinderSelfTest() throws Exception {
@Override protected TcpDiscoveryGoogleStorageIpFinder ipFinder() throws Exception {
TcpDiscoveryGoogleStorageIpFinder finder = new TcpDiscoveryGoogleStorageIpFinder();

injectLogger(finder);
resources.inject(finder);

assert finder.isShared() : "Ip finder must be shared by default.";

Expand Down

0 comments on commit 78478dc

Please sign in to comment.