Skip to content

Commit

Permalink
add fusio cache key prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Aug 3, 2024
1 parent a90bfa0 commit 27f2e2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Action/SqlActionAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function configure(BuilderInterface $builder, ElementFactoryInterface $el

protected function getTable(Connection $connection, string $tableName): Table
{
$key = md5(__CLASS__ . $tableName);
$key = 'fusio_sql_action_' . md5(__CLASS__ . $tableName);
$table = $this->cache->get($key);

if ($table === null) {
Expand Down

0 comments on commit 27f2e2d

Please sign in to comment.