From 9c3336e3f31e62e05184bf8b2fa98d2514dce175 Mon Sep 17 00:00:00 2001 From: jeronimoalbi Date: Tue, 17 Oct 2023 12:36:11 +0200 Subject: [PATCH] chore: change Ignite App handshake config Co-authored-by: Danilo Pantani --- ignite/services/plugin/protocol.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ignite/services/plugin/protocol.go b/ignite/services/plugin/protocol.go index 0ea08c5a8c..56c2502483 100644 --- a/ignite/services/plugin/protocol.go +++ b/ignite/services/plugin/protocol.go @@ -11,8 +11,8 @@ import ( var handshakeConfig = hplugin.HandshakeConfig{ ProtocolVersion: 1, - MagicCookieKey: "BASIC_PLUGIN", - MagicCookieValue: "hello", + MagicCookieKey: "IGNITE_APP", + MagicCookieValue: "ignite", } // HandshakeConfig are used to just do a basic handshake between a plugin and host.