All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.spinnaker.keel.config.WorkProcessingConfig.kt Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package com.netflix.spinnaker.keel.config

import org.springframework.boot.context.properties.ConfigurationProperties
import java.time.Duration

@ConfigurationProperties(prefix = "keel.work-processing")
class WorkProcessingConfig {
  var timeoutDuration: Duration = Duration.ofMinutes(2)
  var artifactBatchSize: Int = 1
  var codeEventBatchSize: Int = 1
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy