Skip to content

Commit

Permalink
Merge branch 'develop' into chore/translationCdn
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Oct 3, 2023
2 parents 1128d7f + 3979680 commit f7c7d72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/packages/license/src/pendingLicense.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ export function setPendingLicense(this: LicenseManager, encryptedLicense: string
}
}

export function applyPendingLicense(this: LicenseManager) {
export async function applyPendingLicense(this: LicenseManager) {
if (this.pendingLicense) {
logger.info('Applying pending license.');
this.setLicense(this.pendingLicense);
return this.setLicense(this.pendingLicense);
}
}

Expand Down

0 comments on commit f7c7d72

Please sign in to comment.