Skip to content

Commit

Permalink
change cookie value to reva
Browse files Browse the repository at this point in the history
Signed-off-by: Jimil Desai <jimildesai42@gmail.com>
  • Loading branch information
jimil749 committed Aug 25, 2021
1 parent 28e9a1d commit b0bd1e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/plugin/json/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func (m *Manager) GetUserGroups(ctx context.Context, uid *userpb.UserId) ([]stri
var Handshake = plugin.HandshakeConfig{
ProtocolVersion: 1,
MagicCookieKey: "BASIC_PLUGIN",
MagicCookieValue: "hello",
MagicCookieValue: "reva",
}

func main() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugin/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (plug *RevaPlugin) Kill() {
var handshake = plugin.HandshakeConfig{
ProtocolVersion: 1,
MagicCookieKey: "BASIC_PLUGIN",
MagicCookieValue: "hello",
MagicCookieValue: "reva",
}

func compile(pluginType string, path string) (string, error) {
Expand Down

0 comments on commit b0bd1e2

Please sign in to comment.