We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4341436 commit d3dd626Copy full SHA for d3dd626
2 files changed
CHANGELOG.md
@@ -1,6 +1,9 @@
1
# api
2
3
-## 8x.12.0 - TBD
+## 8x.12.1 - 12 June 2023
4
+- Raise timeout values for polling wikis for pending jobs
5
+
6
+## 8x.12.0 - 01 June 2023
7
- Poll wikis for pending MediaWiki jobs and create Kubernetes jobs to process them if needed
8
9
## 8x.11.1 - 18 April 2023
app/Jobs/PollForMediaWikiJobsJob.php
@@ -5,9 +5,11 @@
use App\Wiki;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
+use Illuminate\Contracts\Queue\ShouldBeUnique;
-class PollForMediaWikiJobsJob extends Job
10
+class PollForMediaWikiJobsJob extends Job implements ShouldBeUnique
11
{
12
+ public $timeout = 3600;
13
public function handle (): void
14
15
$allWikiDomains = Wiki::all()->pluck('domain');
0 commit comments