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.
1 parent 23e59f1 commit 7ff8d56Copy full SHA for 7ff8d56
kafka/config_test.go
@@ -127,6 +127,14 @@ func TestConfigMapAPIs(t *testing.T) {
127
128
// Test that plugins will always be configured before their config options
129
func TestConfigPluginPaths(t *testing.T) {
130
+ if LibrdkafkaLinkInfo != "dynamically linked to librdkafka" {
131
+ // Best practice is to use dynamic linking if
132
+ // librdkafka plugins are used,
133
+ // as otherwise the statically linked version of librdkafka
134
+ // needs to correspond to the dynamically linked one.
135
+ t.Skip("Skipping test when statically linked")
136
+ }
137
+
138
config := &ConfigMap{
139
"plugin.library.paths": "monitoring-interceptor",
140
}
0 commit comments