From bee711d1f8c4eee95318ef670b14f329d6b05d06 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sat, 18 May 2024 01:34:54 +0200 Subject: [PATCH] fix(core): update --- test/test.ts | 4 ++-- ts/00_commitinfo_data.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.ts b/test/test.ts index 783ef2d..f53a989 100644 --- a/test/test.ts +++ b/test/test.ts @@ -9,8 +9,8 @@ let testSmartlogReceiver: smartlogDestinationReceiver.SmartlogDestinationReceive tap.test('should create a valid SmartlogDestinationReceiver', async () => { testSmartlogReceiver = new smartlogDestinationReceiver.SmartlogDestinationReceiver({ - receiverEndpoint: testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'), - passphrase: testQenv.getEnvVarOnDemand('PASSPHRASE'), + receiverEndpoint: await testQenv.getEnvVarOnDemand('RECEIVER_ENDPOINT'), + passphrase: await testQenv.getEnvVarOnDemand('PASSPHRASE'), }); }); diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 126f9d4..cb0c6af 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartlog-destination-receiver', - version: '2.0.5', + version: '2.0.6', description: 'A package providing a destination handler for smartlog logging packages' }