Skip to content

Commit

Permalink
Merge branch 'develop' into fix-api-test-flakyness
Browse files Browse the repository at this point in the history
  • Loading branch information
sampaiodiego authored Oct 18, 2023
2 parents 64d3a33 + 3b5310c commit ccb6810
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/packages/license/src/deprecated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export function getMaxActiveUsers(this: LicenseManager) {

export function getAppsConfig(this: LicenseManager) {
return {
maxPrivateApps: getLicenseLimit(this.getLicense(), 'privateApps') ?? -1,
maxMarketplaceApps: getLicenseLimit(this.getLicense(), 'marketplaceApps') ?? -1,
maxPrivateApps: getLicenseLimit(this.getLicense(), 'privateApps') ?? 3,
maxMarketplaceApps: getLicenseLimit(this.getLicense(), 'marketplaceApps') ?? 5,
};
}

Expand Down

0 comments on commit ccb6810

Please sign in to comment.