Skip to content

Commit

Permalink
Merge pull request #120 from mollie/bugfix/MOL-587-resolve-develop
Browse files Browse the repository at this point in the history
Debug
  • Loading branch information
NghiaDTr authored Dec 12, 2024
2 parents 94c3e93 + a46dc59 commit a882a8e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions processor/src/connector/post-deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ dotenv.config();

import { assertError, assertString } from '../utils/assert.utils';
import { createExtensionAndCustomFields } from '../service/connector.service';
import { logger } from '../utils/logger.utils';

const CONNECT_APPLICATION_URL_KEY = 'CONNECT_SERVICE_URL';

Expand All @@ -11,6 +12,9 @@ async function postDeploy(properties: Map<string, unknown>): Promise<void> {

assertString(applicationUrl, CONNECT_APPLICATION_URL_KEY);

logger.info('Processor URL: ', applicationUrl);
logger.info('properties', properties);

await createExtensionAndCustomFields(applicationUrl);
}

Expand Down

0 comments on commit a882a8e

Please sign in to comment.