Skip to content

Commit

Permalink
fix factory manager instanciation
Browse files Browse the repository at this point in the history
  • Loading branch information
3vilhamster committed Mar 21, 2024
1 parent 2629e2b commit 71c7fd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/persistence/client/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ func (f *factoryImpl) NewExecutionManager(shardID int) (p.ExecutionManager, erro
if err != nil {
return nil, err
}
result := p.NewExecutionManagerImpl(store, f.logger)
result := p.NewExecutionManagerImpl(store, f.logger, p.NewPayloadSerializer())
if errorRate := f.config.ErrorInjectionRate(); errorRate != 0 {
result = errorinjectors.NewExecutionManager(result, errorRate, f.logger)
}
Expand Down
2 changes: 1 addition & 1 deletion idls
Submodule idls updated from afd574 to 34b451

0 comments on commit 71c7fd5

Please sign in to comment.