1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-09-16 08:56:19 +02:00

Revert "Multi product architecture (#3309)" (#3373)

This reverts commit 605c0079eb.
This commit is contained in:
Miguel de la Cruz
2022-07-15 08:04:35 +02:00
committed by GitHub
parent 605c0079eb
commit d093eef2d9
68 changed files with 1112 additions and 2855 deletions

View File

@@ -26,11 +26,11 @@ type CallbackQueue struct {
idone uint32
logger mlog.LoggerIFace
logger *mlog.Logger
}
// NewCallbackQueue creates a new CallbackQueue and starts a thread pool to service it.
func NewCallbackQueue(name string, queueSize int, poolSize int, logger mlog.LoggerIFace) *CallbackQueue {
func NewCallbackQueue(name string, queueSize int, poolSize int, logger *mlog.Logger) *CallbackQueue {
cn := &CallbackQueue{
name: name,
poolSize: poolSize,