Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(./class/sotre/incomer): removed error as having no related incomer should not be blocking #236

Merged
merged 1 commit into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 13 additions & 17 deletions src/class/eventManagement/dispatcher.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,30 +263,26 @@ export class Dispatcher<T extends GenericEvent = GenericEvent> extends EventEmit
}
});

this.resolveTransactionsInterval = setInterval(async() => {
this.resolveTransactionsInterval = setInterval(() => {
if (!this.isWorking) {
return;
}

try {
await this.transactionHandler.resolveTransactions();
}
catch (error) {
this.logger.error({ error: error.stack }, "Failed at resolving transactions");
}
new Promise(() => {
this.transactionHandler.resolveTransactions()
.catch((error) => this.logger.error({ error: error.stack }, "Failed at resolving transactions"));
});
}, options.checkTransactionInterval ?? RESOLVE_TRANSACTION_INTERVAL).unref();

this.pingIntervalTimer = setInterval(async() => {
try {
if (!this.isWorking) {
return;
}

await this.ping();
}
catch (error) {
this.logger.error({ error: error.stack }, "Failed sending pings");
this.pingIntervalTimer = setInterval(() => {
if (!this.isWorking) {
return;
}

new Promise(() => {
this.ping()
.catch((error) => this.logger.error({ error: error.stack }, "Failed sending pings"));
});
}, this.pingInterval).unref();

this.checkLastActivityIntervalTimer = setInterval(async() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,6 @@ export class TransactionHandler<T extends GenericEvent = GenericEvent> {
this.backupIncomerTransactionStore.getTransactions()
]);


const toResolve = [];
const incomerStateToUpdate = new Set<string>();
for (const incomer of incomers) {
Expand Down
2 changes: 1 addition & 1 deletion src/class/eventManagement/incomer.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
getRedis,
Channel
} from "@myunisoft/redis";
import { Logger, pino } from "pino";
import { pino } from "pino";
import { P, match } from "ts-pattern";
import { ValidateFunction } from "ajv";

Expand Down
Loading