Skip to content

Commit

Permalink
Merge pull request #73 from Lotykun/feature/more-entropy
Browse files Browse the repository at this point in the history
adding more entropy to the uniqid in the storagehealthcheck
  • Loading branch information
Gman98ish committed Jan 4, 2023
2 parents 9ac126e + 123251a commit 836b932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Checks/StorageHealthCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class StorageHealthCheck extends HealthCheck

public function status()
{
$uniqueString = uniqid('laravel-health-check_');
$uniqueString = uniqid('laravel-health-check_', true);

foreach (config('healthcheck.storage.disks') as $disk) {
try {
Expand Down

0 comments on commit 836b932

Please sign in to comment.