8000 [FrameworkBundle] Fix 7.4 CachePools integration tests by ogizanagi · Pull Request #37811 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[FrameworkBundle] Fix 7.4 CachePools integration tests #37811

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[FrameworkBundle] Fix 7.4 CachePools integration tests
  • Loading branch information
ogizanagi committed Aug 12, 2020
commit d3ef8ba3bd1ae9fd7f3540963be0c6c1f5521e0c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
imports:
- { resource: ../config/default.yml }
- { resource: default.yml }

framework:
cache:
Expand All @@ -24,8 +24,3 @@ framework:
cache.pool7:
adapter: cache.pool4
public: true

services:
cache_clearer.alias:
alias: cache_clearer
public: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
imports:
- { resource: ../config/default.yml }

services:
cache_clearer.alias:
alias: cache_clearer
public: true
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
imports:
- { resource: ../config/default.yml }
- { resource: default.yml }

parameters:
env(REDIS_HOST): 'localhost'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
imports:
- { resource: ../config/default.yml }
- { resource: default.yml }

parameters:
env(REDIS_HOST): 'localhost'
Expand Down
0