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.
This commit is contained in:
Shrikant Sharat Kandula 2023-07-24 17:16:40 +05:30 committed by GitHub
parent d66e634393
commit f23ae4e3db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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