-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make the step action tiemout and check interval to be configurable. * Improve the error message when the step id does not exist in the referenced params.
- Loading branch information
Showing
10 changed files
with
252 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
maestro-engine/src/main/java/com/netflix/maestro/engine/properties/StepActionProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.netflix.maestro.engine.properties; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.ToString; | ||
|
||
/** | ||
* Step Action properties. Please check {@link | ||
* com.netflix.maestro.engine.dao.MaestroStepInstanceActionDao} about how they are used. | ||
*/ | ||
@Getter | ||
@AllArgsConstructor | ||
@ToString | ||
@Builder | ||
public class StepActionProperties { | ||
private final long actionTimeout; | ||
private final long checkInterval; | ||
} |
Oops, something went wrong.