Skip to content

Commit c858e21

Browse files
committed
Default introspector job active deadline is now 600 seconds
1 parent a45ce1a commit c858e21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator/src/main/java/oracle/kubernetes/operator/tuning/TuningParameters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public boolean isRestartEvictedPods() {
218218
* Returns the value of introspector job active deadline seconds with default value depending on the context.
219219
*/
220220
public long getActiveJobInitialDeadlineSeconds(boolean isInitializeDomainOnPV, String type) {
221-
long defaultValue = 120L;
221+
long defaultValue = 600L;
222222
if (isInitializeDomainOnPV && isWlsOrRestrictedJRFDomain(type)) {
223223
defaultValue = ProcessingConstants.DEFAULT_WLS_OR_RESTRICTED_JRF_INTROSPECTOR_JOB_ACTIVE_DEADLINE_SECONDS;
224224
} else if (isInitializeDomainOnPV) {

0 commit comments

Comments
 (0)