@chainlink/external-adapter-framework 0.0.33 → 0.0.35
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.
package/package.json
CHANGED
|
@@ -63,8 +63,11 @@ class BatchWarmingTransport {
|
|
|
63
63
|
logger.debug('about to add to subscription set');
|
|
64
64
|
const res = await this.subscriptionSet.add(req.requestContext.cacheKey, req.requestContext.data, config.WARMUP_SUBSCRIPTION_TTL);
|
|
65
65
|
logger.debug('done adding to subscription set');
|
|
66
|
-
logger.debug(
|
|
67
|
-
logger.debug(
|
|
66
|
+
logger.debug(`Adding subscription set res ${res}`);
|
|
67
|
+
logger.debug(`Get request ${await this.subscriptionSet.get(req.requestContext.cacheKey)}`);
|
|
68
|
+
logger.debug(`!!(await this.subscriptionSet.get(req.requestContext.cacheKey)t; ${!!(await this.subscriptionSet.get(req.requestContext.cacheKey))}`);
|
|
69
|
+
logger.debug(`!await this.subscriptionSet.get(req.requestContext.cacheKey)t; ${!(await this.subscriptionSet.get(req.requestContext.cacheKey))}`);
|
|
70
|
+
logger.debug(`await this.subscriptionSet.get(req.requestContext.cacheKey)t; ${this.subscriptionSet.get(req.requestContext.cacheKey)}`);
|
|
68
71
|
}
|
|
69
72
|
async backgroundExecute(context) {
|
|
70
73
|
logger.debug('Starting background execute');
|