Issue #2981326: Replace non-test usages of \Drupal::logger() with IoC injection
Open
requested to merge issue/drupal-2981326:2981326-Replace-non-test-usages-of-Drupal-logger() into 10.1.x
Merge request reports
Activity
added 2 commits
added 369 commits
-
72b4e320...39aae61b - 368 commits from branch
project:10.1.x
- 94d5c351 - Work in Progress
-
72b4e320...39aae61b - 368 commits from branch
added 120 commits
-
94d5c351...b232340b - 119 commits from branch
project:10.1.x
- 5ce05a2f - Work in Progress
-
94d5c351...b232340b - 119 commits from branch
210 210 $form_state->set('flood_control_user_identifier', $identifier); 211 211 212 // Don't allow login if the limit for this user has been reached. 213 // Default is to allow 5 failed attempts every 6 hours. 214 if (!$this->userFloodControl->isAllowed('user.failed_login_user', $flood_config->get('user_limit'), $flood_config->get('user_window'), $identifier)) { 215 $form_state->set('flood_control_triggered', 'user'); 216 return; 212 // If there are zero flood records for this user, then we don't need to 213 // clear any failed login attempts after a successful login, so check 214 // for this case first before checking the actual flood limit and store 215 // the result in form state. 216 if (!$this->userFloodControl->isAllowed('user.failed_login_user', 1, $flood_config->get('user_window'), $identifier)) { 217 // Now check the actual limit for the user. Default is to allow 5 218 // failed attempts every 6 hours. This means we check the flood table 219 // twice if flood control has already been triggered by a previous 220 // login attempt, bu this should be the less common case. added 1808 commits
-
5ce05a2f...b6aef35b - 730 commits from branch
project:10.1.x
- b6aef35b...b2b03c80 - 1068 earlier commits
- 50f72e80 - Issue #3411934 by catch, smustgrave, quietone: Mark some Kernel tests with @group #slow
- 02f40225 - Issue #3412029 by catch: Split up JsonApiRegressionTest
- 541baec3 - Issue #3411945 by catch: Split up StyleSerializerTest
- a0bf9683 - Issue #2763431 by dimitriskr, smustgrave, quietone: Replace...
- 94e37fd5 - Issue #2745755 by vasi, Steven Jones, smustgrave, mvc, Wim Leers,...
- ef985e93 - Issue #3399951 by neclimdul, godotislate, catch, lauriii, smustgrave, xjm:...
- f0d3a7bf - Issue #2254189 by smustgrave, quietone, anya_m, andregp, sun, joachim: Fix...
- 4b3313c3 - Issue #3399152 by SamLerner, smustgrave, sourabhjain, DishaKatariya, Nitin...
- 04072995 - Rebasing with 11.x
- 6a1e4609 - Rebasing against 11.x
Toggle commit list-
5ce05a2f...b6aef35b - 730 commits from branch
added 21 commits
- 6a1e4609...cb98777f - 11 earlier commits
- 59f0e738 - Issue #3376159 by tinto, smustgrave, lauriii, djsagar, Harish1688: Links do...
- 441307e9 - Issue #3396018 by andy-blum, Eli-T, Wim Leers, borisson_, mherchel: Allow...
- 8fd2fb49 - Issue #3413879 by catch: Add @group #slow to ForumUninstallTest
- 3b059f78 - Issue #3413730 by catch: Speed up UpdatePathTestBaseTest
- 2c6bb82a - Issue #3376369 by Spokje, quietone, smustgrave, catch: Remove use of book in...
- 225e9301 - Issue #3409388 by quietone, smustgrave: Remove usage of forum module from comments and strings
- c044cc2c - Issue #3249082 by Lendude, bbrala, quietone: Views FieldPluginBaseTest has...
- eb98cb83 - Issue #3413933 by Spokje: Remove astray $session->getPage(); from...
- 16552b02 - Issue #3328457 by xjm, dimitriskr: Replace most substr($a, $i) where $i is...
- a30fa41a - Rebasing with 11.x
Toggle commit list
Please register or sign in to reply