You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 7, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: platform/config/config_v2.go
+15-7Lines changed: 15 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -115,14 +115,22 @@ type Processor struct {
115
115
constDefaultWildcardIndexName="*"
116
116
117
117
// Configuration of QuesmaV1ProcessorQuery and QuesmaV1ProcessorIngest
118
-
typeQuesmaProcessorConfigstruct {
119
-
UseCommonTablebool`koanf:"useCommonTable"`
120
-
IndexConfigIndicesConfigs`koanf:"indexes"`
121
-
// DefaultTargetConnectorType is used in V2 code only
122
-
DefaultTargetConnectorTypestring//it is not serialized to maintain configuration BWC, so it's basically just populated from '*' config in `config_v2.go`
123
-
}
118
+
type (
119
+
QuesmaProcessorConfigstruct {
120
+
UseCommonTablebool`koanf:"useCommonTable"`
121
+
IndexConfigIndicesConfigs`koanf:"indexes"`
122
+
// DefaultTargetConnectorType is used in V2 code only
123
+
DefaultTargetConnectorTypestring//it is not serialized to maintain configuration BWC, so it's basically just populated from '*' config in `config_v2.go`
0 commit comments