Skip to content

Commit

Permalink
comply with review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zingmane committed May 15, 2024
1 parent f8691bc commit 76932aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ TODO add documentation for authentication and permission handling. Currently the
## Feature Flags
Feature flags are used to enable or disable certain features. They have to be configured in the configuration file.Feature flags are:
Feature flags are used to enable or disable certain features. They have to be configured in the configuration file. Feature flags are:
- `isRowPermissionCheckEnabled`: Enable or disable row permission checks (default: false)
- `isPublicFileServerEnabled`: Enable or disable the public file server. If enabled, files are accessible without authentication (default: false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ class CacheVerticle(tableauxConfig: TableauxConfig) extends ScalaVerticle with L
private def registerOnEventBus(): Future[_] = {
Future.sequence(
Seq(
registerHandler(eventBus, ADDRESS_SET_CELL, messageHandlerSetCell),
registerHandler(eventBus, ADDRESS_SET_CELL, messageHandlerSetCell),
registerHandler(eventBus, ADDRESS_RETRIEVE_CELL, messageHandlerRetrieveCell),
registerHandler(eventBus, ADDRESS_SET_ROW_PERMISSIONS, messageHandlerSetRowPermissions),
Expand Down

0 comments on commit 76932aa

Please sign in to comment.