Skip to content

Commit f2671ba

Browse files
author
QSmally
committed
DispatchGroup: add missing logs configuration
1 parent 9d5c92a commit f2671ba

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Sources/DispatchGroup.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ class DispatchGroup {
1818
const DispatchQueue = require("./DispatchQueue");
1919

2020
for (const [name, properties] of Object.entries(dispatchQueues)) {
21-
const { path, threadAmount, lazyInitialisation, dataContext } = properties;
21+
const { path, threadAmount, lazyInitialisation, dataContext, logs } = properties;
2222
const dispatchQueue = new DispatchQueue(path, {
2323
threadAmount,
2424
lazyInitialisation,
25-
dataContext });
25+
dataContext,
26+
logs });
2627
this.threadGroups.set(name, dispatchQueue);
2728
}
2829
}

0 commit comments

Comments
 (0)