Skip to content

Commit

Permalink
fix cache key missing separator (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahoo-Wang authored Dec 5, 2022
1 parent 77af061 commit ca21469
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ data class CacheProperties(val enabled: Boolean = true, val cacheKeyPrefix: Cach
data class CacheKeyPrefix(
var globalPolicyIndex: String = CoSec.COSEC + ":global:policy",
var policy: String = CoSec.COSEC + ":policy:",
var rolePolicy: String = CoSec.COSEC + "role:policy:"
var rolePolicy: String = CoSec.COSEC + ":role:policy:"
)
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# limitations under the License.
#
group=me.ahoo.cosec
version=1.1.1
version=1.2.0
description=RBAC-based And Policy-based Multi-Tenant Reactive Security Framework
website=https://github.com/Ahoo-Wang/CoSec
issues=https://github.com/Ahoo-Wang/CoSec/issues
Expand Down

0 comments on commit ca21469

Please sign in to comment.