8000 [FrameworkBundle] metadata_update_threshold default value must be an int by dunglas · Pull Request #29233 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[FrameworkBundle] metadata_update_threshold default value must be an int #29233

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
Nov 16, 2018
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] 8000 metadata_update_threshold default value must be an int
  • Loading branch information
dunglas committed Nov 15, 2018
commit b7e7c46f439a6bafaa09e0673e470f97c895ccf6
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ private function addSessionSection(ArrayNodeDefinition $rootNode)
->scalarNode('gc_maxlifetime')->end()
->scalarNode('save_path')->defaultValue('%kernel.cache_dir%/sessions')->end()
->integerNode('metadata_update_threshold')
->defaultValue('0')
->defaultValue(0)
->info('seconds to wait between 2 session metadata updates')
->end()
->end()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ protected static function getBundleDefaultConfig()
'cookie_samesite' => null,
'gc_probability' => 1,
'save_path' => '%kernel.cache_dir%/sessions',
'metadata_update_threshold' => '0',
'metadata_update_threshold' => 0,
),
'request' => array(
'enabled' => false,
Expand Down
0