We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d40fe7 commit 649b7faCopy full SHA for 649b7fa
plugin/get_config.go
@@ -22,6 +22,8 @@ type GetConfig struct {
22
ShouldIgnoreError ErrorPredicate
23
IgnoreConfig *IgnoreConfig
24
RetryConfig *RetryConfig
25
+ // max concurrency - this applies when the get function is ALSO used as a column hydrate function
26
+ MaxConcurrency int
27
}
28
29
// initialise the GetConfig
plugin/table.go
@@ -139,6 +139,7 @@ func (t *Table) buildHydrateConfigMap() {
139
ShouldIgnoreError: get.ShouldIgnoreError,
140
IgnoreConfig: get.IgnoreConfig,
141
RetryConfig: get.RetryConfig,
142
+ MaxConcurrency: get.MaxConcurrency,
143
144
145
0 commit comments