Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1118,8 +1118,8 @@ private InternalSearchOperation searchChangelog(final SearchRequest request, fin
final ResultCode expectedResultCode, String testName) throws Exception
{
TestTimer timer = new TestTimer.Builder()
.maxSleep(10, SECONDS)
.sleepTimes(10, MILLISECONDS)
.maxSleep(30, SECONDS)
.sleepTimes(100, MILLISECONDS)
.toTimer();
InternalSearchOperation searchOp = timer.repeatUntilSuccess(new Callable<InternalSearchOperation>()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
*
* Copyright 2008 Sun Microsystems, Inc.
* Portions Copyright 2014-2016 ForgeRock AS.
* Portions copyright 2026 3A Systems, LLC.
*/
package org.opends.server.tasks;

Expand Down Expand Up @@ -92,7 +93,7 @@ public void testLockdownModeTasks()
boolean isLoopback = localAddress.isLoopbackAddress();
String[] args =
{
"-h", localIP,
"-h", "127.0.0.1",
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
"-b", "",
"-s", "base",
Expand Down Expand Up @@ -263,7 +264,7 @@ public void testLockdownModeTasks()
// anonymous connection.
args = new String[]
{
"-h", localIP,
"-h", "127.0.0.1",
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
"-b", "",
"-s", "base",
Expand Down
Loading