Skip to content

Commit

Permalink
fix(store): resolve conflicts after rebasing
Browse files Browse the repository at this point in the history
1. resolve conflicts after rebasing

Signed-off-by: TheR1sing3un <[email protected]>
  • Loading branch information
TheR1sing3un committed Oct 11, 2023
1 parent 52c5a3f commit 24536d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ public void setUp() throws StoreException {
streamStore = new MockStreamStore();
stateMachine = Mockito.spy(new DefaultLogicQueueStateMachine(TOPIC_ID, QUEUE_ID, kvService));
inflightService = new InflightService();
SnapshotService snapshotService = new SnapshotService(streamStore, kvService);
OperationLogService operationLogService = new StreamOperationLogService(streamStore, snapshotService, new StoreConfig());
snapshotService = new SnapshotService(streamStore, kvService);
operationLogService = new StreamOperationLogService(streamStore, snapshotService, new StoreConfig());
logicQueue = new StreamLogicQueue(new StoreConfig(), TOPIC_ID, QUEUE_ID,
metadataService, stateMachine, streamStore, operationLogService, inflightService);
logicQueue.open().join();
Expand Down

0 comments on commit 24536d1

Please sign in to comment.