From 3aa2b0cabd0a60b50b570b4f063e9c503d343275 Mon Sep 17 00:00:00 2001 From: erickgonzalez Date: Wed, 8 Jan 2025 15:14:48 -0600 Subject: [PATCH] update new properties directly on code, using env var did not worked --- .../enterprise/publishing/remote/bundler/ContentBundler.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotCMS/src/main/java/com/dotcms/enterprise/publishing/remote/bundler/ContentBundler.java b/dotCMS/src/main/java/com/dotcms/enterprise/publishing/remote/bundler/ContentBundler.java index 87b82cd7b8b..89042b903b2 100755 --- a/dotCMS/src/main/java/com/dotcms/enterprise/publishing/remote/bundler/ContentBundler.java +++ b/dotCMS/src/main/java/com/dotcms/enterprise/publishing/remote/bundler/ContentBundler.java @@ -85,8 +85,8 @@ public class ContentBundler implements IBundler { private UserAPI uAPI = null; private PublisherAPI pubAPI = null; private PublishAuditAPI pubAuditAPI = PublishAuditAPI.getInstance(); - final boolean shouldIncludeAssets = Config.getBooleanProperty("INCLUDE_ASSETS_BUNDLE", true); - final boolean shouldIncludeArchivedContent = Config.getBooleanProperty("INCLUDE_ARCHIVED_CONTENT_BUNDLE",false); + final boolean shouldIncludeAssets = Config.getBooleanProperty("INCLUDE_ASSETS_BUNDLE", false); + final boolean shouldIncludeArchivedContent = Config.getBooleanProperty("INCLUDE_ARCHIVED_CONTENT_BUNDLE",true); public final static String CONTENT_EXTENSION = ".content.xml" ; public final static String CONTENT_WORKFLOW_EXTENSION = ".contentworkflow.xml";