|
@@ -2889,7 +2889,7 @@ public class KerberosHelperImpl implements KerberosHelper {
|
|
|
event,
|
|
|
commandParameters,
|
|
|
"Create Principals",
|
|
|
- configuration.getDefaultServerTaskTimeout());
|
|
|
+ Math.max(ServerAction.DEFAULT_LONG_RUNNING_TASK_TIMEOUT_SECONDS, configuration.getDefaultServerTaskTimeout()));
|
|
|
|
|
|
RoleGraph roleGraph = roleGraphFactory.createNew(roleCommandOrder);
|
|
|
roleGraph.build(stage);
|
|
@@ -2912,7 +2912,7 @@ public class KerberosHelperImpl implements KerberosHelper {
|
|
|
event,
|
|
|
commandParameters,
|
|
|
"Destroy Principals",
|
|
|
- configuration.getDefaultServerTaskTimeout());
|
|
|
+ Math.max(ServerAction.DEFAULT_LONG_RUNNING_TASK_TIMEOUT_SECONDS, configuration.getDefaultServerTaskTimeout()));
|
|
|
|
|
|
RoleGraph roleGraph = roleGraphFactory.createNew(roleCommandOrder);
|
|
|
roleGraph.build(stage);
|
|
@@ -2958,7 +2958,7 @@ public class KerberosHelperImpl implements KerberosHelper {
|
|
|
event,
|
|
|
commandParameters,
|
|
|
"Create Keytabs",
|
|
|
- configuration.getDefaultServerTaskTimeout());
|
|
|
+ Math.max(ServerAction.DEFAULT_LONG_RUNNING_TASK_TIMEOUT_SECONDS, configuration.getDefaultServerTaskTimeout()));
|
|
|
|
|
|
RoleGraph roleGraph = roleGraphFactory.createNew(roleCommandOrder);
|
|
|
roleGraph.build(stage);
|