You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/DependencyInjection/Configuration.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ function ($v) {
143
143
return$v;
144
144
}
145
145
146
-
thrownewInvalidConfigurationException('To enable the user context logout handler, you need to configure a ban capable proxy_client.');
146
+
thrownewInvalidConfigurationException('To enable the user context logout handler, you need to configure a tag capable proxy_client (varnish, symfony, noop or custom_proxy_client).');
147
147
})
148
148
->end()
149
149
// Determine the default tags header for the varnish client, depending on whether we use BAN or xkey
Copy file name to clipboardExpand all lines: tests/Unit/DependencyInjection/ConfigurationTest.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -608,9 +608,9 @@ public function userContextLogoutHandlerProvider()
608
608
'auto no client' => ['config/user_context_auto_noclient.yml', false, false, false, false, null],
609
609
'auto ban client' => ['config/user_context_auto_banclient.yml', true, true, 'custom', 'auto', null],
610
610
'auto non ban client' => ['config/user_context_auto_notbanclient.yml', false, 'auto', 'nginx', 'auto', null],
611
-
'true no client' => ['config/user_context_true_noclient.yml', null, false, 'auto', false, 'you need to configure a ban capable proxy_client'],
611
+
'true no client' => ['config/user_context_true_noclient.yml', null, false, 'auto', false, 'you need to configure a tag capable proxy_client'],
612
612
'true ban client' => ['config/user_context_true_banclient.yml', true, true, 'custom', 'auto', null],
613
-
'true non ban client' => ['config/user_context_true_notbanclient.yml', null, true, 'nginx', 'auto', 'you need to configure a ban capable proxy_client'],
613
+
'true non ban client' => ['config/user_context_true_notbanclient.yml', null, true, 'nginx', 'auto', 'you need to configure a tag capable proxy_client'],
0 commit comments