Skip to content

Commit

Permalink
Merge pull request #547 from wasuradananjith/2.x.x
Browse files Browse the repository at this point in the history
[2.x] Supporiting missing parameters for endpoint configs via params file
  • Loading branch information
uvindra authored Dec 7, 2020
2 parents acf581b + 30f496e commit 668b9c5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions import-export-cli/specs/params/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ type Configuration struct {
RetryDelay *int `yaml:"retryDelay" json:"retryDelay,string"`
// Factor used for config
Factor *int `yaml:"factor" json:"factor,string"`
// RetryErroCode used for config
RetryErroCode *int `yaml:"retryErroCode" json:"retryErroCode,string"`
// SuspendErrorCode used for config
SuspendErrorCode *int `yaml:"suspendErrorCode" json:"suspendErrorCode,string"`
// SuspendDuration used for config
SuspendDuration *int `yaml:"suspendDuration" json:"suspendDuration,string"`
// SuspendMaxDuration used for config
SuspendMaxDuration *int `yaml:"suspendMaxDuration" json:"suspendMaxDuration,string"`
// ActionSelect used for config
ActionSelect *string `yaml:"actionSelect" json:"actionSelect"`
// ActionDuration used for config
ActionDuration *int `yaml:"actionDuration" json:"actionDuration,string"`
}

// Endpoint details
Expand Down

0 comments on commit 668b9c5

Please sign in to comment.