Backend: Rename PrismWorker to MetaWorker

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
Michael Mayer
2020-06-29 13:35:38 +02:00
parent 1c72f88e8c
commit 2a24bf293d
5 changed files with 29 additions and 29 deletions

View File

@@ -9,10 +9,10 @@ var (
MainWorker = Busy{}
SyncWorker = Busy{}
ShareWorker = Busy{}
PrismWorker = Busy{}
MetaWorker = Busy{}
)
// WorkersBusy returns true if any worker is busy.
func WorkersBusy() bool {
return MainWorker.Busy() || SyncWorker.Busy() || ShareWorker.Busy() || PrismWorker.Busy()
return MainWorker.Busy() || SyncWorker.Busy() || ShareWorker.Busy() || MetaWorker.Busy()
}