@redpanda-data/docs-extensions-and-macros 3.11.0 → 3.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -140,7 +140,8 @@ module.exports.register = function ({ config }) {
|
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
// Log a warning if neither URL was found (only warn for missing cloud if it should support cloud)
|
|
143
|
-
|
|
143
|
+
// Ignore sql_driver connectors because they are not real connectors and only used as a utility for grouping sql driver types.
|
|
144
|
+
if (!connector.includes('sql_driver') && !redpandaConnectUrl && (!redpandaCloudUrl && is_cloud_supported === 'y')) {
|
|
144
145
|
logger.warn(`Docs missing for: ${connector} of type: ${type}`);
|
|
145
146
|
}
|
|
146
147
|
|