Skip to content

Commit 740d414

Browse files
jesseleitesimonhampjasonvarga
authored
Only shuffle when fork is installed (#142)
Co-authored-by: Simon Hamp <[email protected]> Co-authored-by: Jason Varga <[email protected]>
1 parent b737c7a commit 740d414

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Generator.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use Illuminate\Routing\Router;
1010
use Illuminate\Support\Arr;
1111
use League\Flysystem\Filesystem as Flysystem;
12-
use Spatie\Fork\Fork;
1312
use Statamic\Contracts\Imaging\UrlBuilder;
1413
use Statamic\Facades\Collection;
1514
use Statamic\Facades\Entry;
@@ -193,6 +192,10 @@ protected function createContentFiles($urls = '*')
193192

194193
$pages = $this->gatherContent($urls);
195194

195+
if (app('fork-installed') && $this->workers > 1) {
196+
$pages = $pages->shuffle();
197+
}
198+
196199
Partyline::line("Generating {$pages->count()} content files...");
197200

198201
$closures = $this->makeContentGenerationClosures($pages, $request);
@@ -254,8 +257,7 @@ protected function gatherAllPages()
254257
->values()
255258
->unique
256259
->url()
257-
->reject(fn ($page) => $this->shouldRejectPage($page))
258-
->shuffle();
260+
->reject(fn ($page) => $this->shouldRejectPage($page));
259261
}
260262

261263
protected function makeContentGenerationClosures($pages, $request)
@@ -430,7 +432,7 @@ protected function updateCurrentSite($site)
430432

431433
protected function checkConcurrencySupport()
432434
{
433-
if ($this->workers === 1 || class_exists(Fork::class)) {
435+
if ($this->workers === 1 || app('fork-installed')) {
434436
return;
435437
}
436438

0 commit comments

Comments
 (0)