Fix incorrect Eventhubs error message (#3210)
Signed-off-by: Bernd Verst <github@bernd.dev>
This commit is contained in:
parent
88eb49c838
commit
7fc784e12e
|
|
@ -107,9 +107,9 @@ func parseEventHubsMetadata(meta map[string]string, isBinding bool, log logger.L
|
|||
}
|
||||
}
|
||||
|
||||
// If both storageConnectionString and storageAccountKey are specified, show a warning because the connection string will take priority
|
||||
// If both storageConnectionString and storageAccountName are specified, show a warning because the connection string will take priority
|
||||
if m.StorageConnectionString != "" && m.StorageAccountName != "" {
|
||||
log.Warn("Property storageAccountKey is ignored when storageConnectionString is present")
|
||||
log.Warn("Property storageAccountName is ignored when storageConnectionString is present")
|
||||
}
|
||||
|
||||
// Entity management is only possible when using Azure AD
|
||||
|
|
|
|||
Loading…
Reference in New Issue