Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
symas-public
ldap-load-gen
Commits
45ad3c88
Commit
45ad3c88
authored
Feb 16, 2022
by
Shawn McKinney
Browse files
fix the sleep between modrdn ops
parent
02eb9ad3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/symas/ModUser.java
View file @
45ad3c88
...
...
@@ -55,7 +55,14 @@ public class ModUser extends LoadBase
warn
(
"MODRDN["
+
count
+
"]: old userId: "
+
user
.
getUserId
()
+
", new userId: "
+
newUserId
);
outUser
=
userImpl
.
modRdn
(
user
,
newUserId
);
assertNotNull
(
outUser
);
sleep
(
1000
);
try
{
Thread
.
sleep
(
1000
);
}
catch
(
InterruptedException
ie
)
{
Thread
.
currentThread
().
interrupt
();
}
user
.
setUserId
(
newUserId
);
outUser
=
userImpl
.
modRdn
(
user
,
oldUserId
);
assertNotNull
(
outUser
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment