Skip to content

Commit

Permalink
Prefer Cache env from laravel 11 (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
cragonnyunt authored Nov 5, 2024
1 parent c4c522c commit b310d50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/kafka.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@
/*
| The cache driver that will be used
*/
'cache_driver' => env('KAFKA_CACHE_DRIVER', env('CACHE_DRIVER', 'file')),
'cache_driver' => env('KAFKA_CACHE_DRIVER', env('CACHE_DRIVER', env('CACHE_STORE', 'database'))),

/*
| Kafka message id key name
*/
'message_id_key' => env('MESSAGE_ID_KEY', 'laravel-kafka::message-id'),
];
];

0 comments on commit b310d50

Please sign in to comment.