We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d70d3c4 commit eb7f427Copy full SHA for eb7f427
1 file changed
packages/cache/src/CachePool.php
@@ -908,6 +908,10 @@ public function withGroup(string $group): static
908
$new = clone $this;
909
$new->storage = $this->storage->withGroup($group);
910
911
+ if ($new->tagPool instanceof self && $new->tagPool->isGroupSupported()) {
912
+ $new->tagPool = $new->tagPool->withGroup($group);
913
+ }
914
+
915
return $new;
916
}
917
0 commit comments