Skip to content

Commit

Permalink
fix(CommandInQueue): update caseId
Browse files Browse the repository at this point in the history
  • Loading branch information
h4kuna authored and pionl committed Aug 6, 2024
1 parent faa4bae commit 9816cf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"require": {
"php": ">=8.1",
"h4kuna/serialize-polyfill": "^0.2.4",
"h4kuna/serialize-polyfill": "^0.2.5",
"laravel/framework": "^9",
"psr/log": "^2 | ^3",
"psr/simple-cache": "^3.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Jobs/CommandInQueueJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct(
}

ksort($parameters);
$this->parametersKey = md5(Serialize::encode($parameters));
$this->parametersKey = md5(Serialize::encode($parameters, self::class));
}

public function handle(Kernel $kernel, ConsoleOutput $consoleOutput, LoggerInterface $logger): void
Expand Down

0 comments on commit 9816cf3

Please sign in to comment.