Skip to content

Commit

Permalink
fix(workerbase): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Apr 16, 2024
1 parent 659bf43 commit 0aa41cf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/core/WorkerBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ import {
import { Arango } from '@restorecommerce/chassis-srv/lib/database/provider/arango/base.js';
import { createLogger } from '@restorecommerce/logger';
import { BindConfig } from '@restorecommerce/chassis-srv/lib/microservice/transport/provider/grpc/index.js';
import {
CommandInterfaceServiceImplementation,
import {
ProtoMetadata,
protoMetadata as CommandInterfaceMeta,
CommandInterfaceServiceDefinition,
Expand Down Expand Up @@ -74,7 +73,7 @@ export abstract class WorkerBase {
}

get db() {
return this.db;
return this._db;
}

protected set db(value: DatabaseProvider) {
Expand Down

0 comments on commit 0aa41cf

Please sign in to comment.