Skip to content

Commit

Permalink
update new properties directly on code, using env var did not worked
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Jan 8, 2025
1 parent 6371557 commit 3aa2b0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 3aa2b0c

Please sign in to comment.