diff options
| author | 2024-09-26 07:40:49 +0000 | |
|---|---|---|
| committer | 2024-09-26 09:40:49 +0200 | |
| commit | b0fbc327f0266b96a3882cc72a5c481e7824941c (patch) | |
| tree | 6afb58f70f917f84dbe54b11981d7fad2bbb17a8 /internal/workers | |
| parent | [bugfix] Fix incorrect reply shown in interaction request (#3344) (diff) | |
| download | gotosocial-b0fbc327f0266b96a3882cc72a5c481e7824941c.tar.xz | |
[chore] reduce number admin process workers (#3354)
Diffstat (limited to 'internal/workers')
| -rw-r--r-- | internal/workers/workers.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/workers/workers.go b/internal/workers/workers.go index 657522903..4cf549041 100644 --- a/internal/workers/workers.go +++ b/internal/workers/workers.go @@ -87,7 +87,7 @@ func (w *Workers) Start() {  	w.Dereference.Start(n)  	log.Infof(nil, "started %d dereference workers", n) -	n = 4 * maxprocs +	n = maxprocs  	w.Processing.Start(n)  	log.Infof(nil, "started %d processing workers", n)  }  | 
