File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ RUN cd /tmp/jans \
44
44
&& cp ${JANS_SETUP_DIR}/schema/custom_schema.json /app/schema/ \
45
45
&& cp ${JANS_SETUP_DIR}/schema/opendj_types.json /app/schema/
46
46
47
- ENV FLEX_SOURCE_VERSION=d760d9dbad11144b7f69674877b57d5f176f1c28
47
+ ENV FLEX_SOURCE_VERSION=5510b97041b0a01ec96f732412deeea9e9927077
48
48
49
49
RUN mkdir -p /app/templates/admin-ui
50
50
Original file line number Diff line number Diff line change 21
21
def main ():
22
22
manager = get_manager ()
23
23
24
- mapper = PersistenceMapper ()
25
- persistence_groups = mapper .groups ().keys ()
26
-
27
24
wait_for_persistence (manager )
28
-
29
25
render_env_config (manager )
30
26
31
27
with manager .create_lock ("admin-ui-setup" ):
@@ -257,6 +253,11 @@ def resolve_conf_app(old_conf, new_conf):
257
253
old_conf ["uiConfig" ]["allowSmtpKeystoreEdit" ] = True
258
254
should_update = True
259
255
256
+ # add missing intervalForSyncLicenseDetailsInDays under licenseConfig
257
+ if "intervalForSyncLicenseDetailsInDays" not in old_conf ["licenseConfig" ]:
258
+ old_conf ["licenseConfig" ]["intervalForSyncLicenseDetailsInDays" ] = 30
259
+ should_update = True
260
+
260
261
# finalized status and conf
261
262
return should_update , old_conf
262
263
You can’t perform that action at this time.
0 commit comments