File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 9
9
use Illuminate \Routing \Router ;
10
10
use Illuminate \Support \Arr ;
11
11
use League \Flysystem \Filesystem as Flysystem ;
12
- use Spatie \Fork \Fork ;
13
12
use Statamic \Contracts \Imaging \UrlBuilder ;
14
13
use Statamic \Facades \Collection ;
15
14
use Statamic \Facades \Entry ;
@@ -193,6 +192,10 @@ protected function createContentFiles($urls = '*')
193
192
194
193
$ pages = $ this ->gatherContent ($ urls );
195
194
195
+ if (app ('fork-installed ' ) && $ this ->workers > 1 ) {
196
+ $ pages = $ pages ->shuffle ();
197
+ }
198
+
196
199
Partyline::line ("Generating {$ pages ->count ()} content files... " );
197
200
198
201
$ closures = $ this ->makeContentGenerationClosures ($ pages , $ request );
@@ -254,8 +257,7 @@ protected function gatherAllPages()
254
257
->values ()
255
258
->unique
256
259
->url ()
257
- ->reject (fn ($ page ) => $ this ->shouldRejectPage ($ page ))
258
- ->shuffle ();
260
+ ->reject (fn ($ page ) => $ this ->shouldRejectPage ($ page ));
259
261
}
260
262
261
263
protected function makeContentGenerationClosures ($ pages , $ request )
@@ -430,7 +432,7 @@ protected function updateCurrentSite($site)
430
432
431
433
protected function checkConcurrencySupport ()
432
434
{
433
- if ($ this ->workers === 1 || class_exists (Fork::class )) {
435
+ if ($ this ->workers === 1 || app ( ' fork-installed ' )) {
434
436
return ;
435
437
}
436
438
You can’t perform that action at this time.
0 commit comments