10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30b1294 commit 117a4b5Copy full SHA for 117a4b5
lib/core/odp/odp_event_manager.ts
@@ -305,7 +305,6 @@ export abstract class OdpEventManager implements IOdpEventManager {
305
this.logger.log(LogLevel.WARNING, 'Failed to Process ODP Event. ODPEventManager is not running.');
306
return;
307
308
- const hasNecessaryIdentifiers = this.hasNecessaryIdentifiers;
309
310
if (!this.hasNecessaryIdentifiers(event)) {
311
this.logger.log(LogLevel.ERROR, 'ODP events should have at least one key-value pair in identifiers.');
@@ -347,7 +346,7 @@ export abstract class OdpEventManager implements IOdpEventManager {
347
346
} else if (this.queueHasBatches()) {
348
// Check if queue has a full batch available
349
this.clearCurrentTimeout();
350
-
+
351
while (this.queueHasBatches()) {
352
this.makeAndSend1Batch();
353
}
0 commit comments