From f23ae4e3db0accc13b84a81f63e2a8f50a8e7185 Mon Sep 17 00:00:00 2001 From: Shrikant Sharat Kandula Date: Mon, 24 Jul 2023 17:16:40 +0530 Subject: [PATCH] fix: Fix access to field for EE (#25634) Fixes non-prod compile error caused in EE code, due to access restricted to the `license` field. --- .../com/appsmith/server/domains/ce/TenantConfigurationCE.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/ce/TenantConfigurationCE.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/ce/TenantConfigurationCE.java index 71ae5f40e0..4478a93cc2 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/ce/TenantConfigurationCE.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/domains/ce/TenantConfigurationCE.java @@ -19,7 +19,7 @@ public class TenantConfigurationCE { private String instanceName; - private License license; + protected License license; // We add `JsonInclude` here, so that this field is included in the JSON response, even if it is `null`. Reason is, // if this field is not present, then the existing value in client's state doesn't get updated. It's just the way