Skip to content

Commit

Permalink
Fixing cache key generation
Browse files Browse the repository at this point in the history
  • Loading branch information
quentin.schmick committed Aug 30, 2022
1 parent e1fb603 commit 7a91e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jobs/DebouncedJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ protected function calculateCacheKey() : void
$this->_cacheKey = sprintf(
'%s:%s',
get_class($this->_jobToDebounce),
spl_object_hash($this->_jobToDebounce),
sha1(json_encode($this->_jobToDebounce)),
);
}

Expand Down

0 comments on commit 7a91e9b

Please sign in to comment.