We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8cc1ce9 + 4f9bf84 commit 08fd159Copy full SHA for 08fd159
service/passthrough.go
@@ -72,11 +72,11 @@ var (
72
func (o *PassthroughOption) valueForServerType(serverType ServerType) []string {
73
var result []string
74
switch serverType {
75
- case ServerTypeSingle, ServerTypeResilientSingle:
+ case ServerTypeSingle:
76
result = o.Values.All
77
case ServerTypeCoordinator:
78
result = o.Values.Coordinators
79
- case ServerTypeDBServer:
+ case ServerTypeDBServer, ServerTypeResilientSingle:
80
result = o.Values.DBServers
81
case ServerTypeAgent:
82
result = o.Values.Agents
0 commit comments