From 681bdffb63c3a3918e33efb0f7f42cd0a85fe0b0 Mon Sep 17 00:00:00 2001 From: Pavel Abramov Date: Mon, 22 Apr 2024 13:44:31 +0200 Subject: [PATCH] Remove allow_to_discover from appInstance PR #46 accidently added allow_to_discover field to app_instance which was removed in #52 Not deprecating field number 25 (allow_to_discover) because we haven't had released EVE with this API yet, so we don't have to do this Signed-off-by: Pavel Abramov --- proto/config/appconfig.proto | 6 ------ 1 file changed, 6 deletions(-) diff --git a/proto/config/appconfig.proto b/proto/config/appconfig.proto index 7b37807f..6140e224 100644 --- a/proto/config/appconfig.proto +++ b/proto/config/appconfig.proto @@ -158,8 +158,6 @@ message AppInstanceConfig { // contains the encrypted userdata org.lfedge.eve.common.CipherBlock cipherData = 13; - // Deprecated 14 - // The static IP address assigned on the NetworkAdapter which App Container // stats collection uses. If the 'collectStatsIPAddr' is not empty and valid, // it enables the container stats collection for this App. @@ -210,10 +208,6 @@ message AppInstanceConfig { // PatchEnvelopeRef is used to track all patch envelopes used by the app instance PatchEnvelopeRef patchRef = 23; - // allow AppInstance to discover other AppInstances - // attached to its network instances - bool allow_to_discover = 25; - // This edge-node UUID for the Designate Node for the Application string designated_node_id = 26; }