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 cbb1231 commit d18af65Copy full SHA for d18af65
CHANGELOG.md
@@ -5,6 +5,7 @@
5
### Added
6
7
### Fixed
8
+* [opensearch role] Possible nil pointer on not setting tenant permission
9
10
## [2.0.7] - 2022-12-06
11
### Changed
es/util.go
@@ -600,6 +600,10 @@ func indexPermissionsHash(v interface{}) int {
600
}
601
602
func tenantPermissionsHash(v interface{}) int {
603
+ if v == nil {
604
+ return hashcode("")
605
+ }
606
+
607
var buf bytes.Buffer
608
m := v.(map[string]interface{})
609
0 commit comments