@mojaloop/sdk-scheme-adapter 24.9.8-snapshot.4 → 24.9.8-snapshot.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -257,7 +257,7 @@ class Server extends EventEmitter {
|
|
|
257
257
|
}
|
|
258
258
|
|
|
259
259
|
this.logger.isDebugEnabled && this.logger.push({ oldConf: this.conf.inbound, newConf: newConf.inbound }).debug('Inbound server configuration');
|
|
260
|
-
const updateInboundServer = this._shouldUpdateInboundServer(
|
|
260
|
+
const updateInboundServer = this._shouldUpdateInboundServer(newConf);
|
|
261
261
|
if (updateInboundServer) {
|
|
262
262
|
await this.inboundServer.stop();
|
|
263
263
|
this.inboundServer = new InboundServer(
|
|
@@ -276,7 +276,7 @@ class Server extends EventEmitter {
|
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
this.logger.isDebugEnabled && this.logger.push({ oldConf: this.conf.outbound, newConf: newConf.outbound }).debug('Outbound server configuration');
|
|
279
|
-
const updateOutboundServer = this._shouldUpdateOutboundServer(
|
|
279
|
+
const updateOutboundServer = this._shouldUpdateOutboundServer(newConf);
|
|
280
280
|
if (updateOutboundServer) {
|
|
281
281
|
await this.outboundServer.stop();
|
|
282
282
|
this.outboundServer = new OutboundServer(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/sdk-scheme-adapter-outbound-command-event-handler",
|
|
3
|
-
"version": "0.3.0-snapshot.
|
|
3
|
+
"version": "0.3.0-snapshot.40",
|
|
4
4
|
"description": "Mojaloop sdk scheme adapter command event handler",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/mojaloop/sdk-scheme-adapter/",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/sdk-scheme-adapter-outbound-domain-event-handler",
|
|
3
|
-
"version": "0.3.0-snapshot.
|
|
3
|
+
"version": "0.3.0-snapshot.40",
|
|
4
4
|
"description": "mojaloop sdk scheme adapter outbound domain event handler",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/mojaloop/sdk-scheme-adapter/",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/sdk-scheme-adapter-private-shared-lib",
|
|
3
|
-
"version": "0.4.0-snapshot.
|
|
3
|
+
"version": "0.4.0-snapshot.40",
|
|
4
4
|
"description": "SDK Scheme Adapter private shared library.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/mojaloop/accounts-and-balances-bc/tree/main/modules/private-types",
|
package/package.json
CHANGED