Skip to content

Commit 3fa51db

Browse files
authoredMar 3, 2025
Allow longer job names (#122)
1 parent 7328e2a commit 3fa51db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/Records/JobAttempt.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function __construct(
5050
public int $hydrated_models,
5151
public int $peak_memory_usage,
5252
) {
53-
$this->name = Str::tinyText($this->name);
53+
$this->name = Str::text($this->name);
5454
$this->connection = Str::tinyText($this->connection);
5555
$this->queue = Str::tinyText($this->queue);
5656
}

‎src/Records/QueuedJob.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(
3737
public string $queue,
3838
public int $duration,
3939
) {
40-
$this->name = Str::tinyText($this->name);
40+
$this->name = Str::text($this->name);
4141
$this->connection = Str::tinyText($this->connection);
4242
$this->queue = Str::tinyText($this->queue);
4343
}

0 commit comments

Comments
 (0)