Skip to content
Snippets Groups Projects
Commit 3f4ce966 authored by Adam G-H's avatar Adam G-H
Browse files

Fix priority

parent 12b3533a
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ services:
arguments:
- '@update.manager'
tags:
- { name: event_subscriber, priority: 1000 }
- { name: event_subscriber }
automatic_updates.excluded_paths_subscriber:
class: Drupal\automatic_updates\Event\ExcludedPathsSubscriber
arguments: ['%app.root%', '%site.path%', '@file_system', '@stream_wrapper_manager']
......
......@@ -41,7 +41,7 @@ class UpdateRefreshSubscriber implements EventSubscriberInterface {
*/
public static function getSubscribedEvents() {
return [
AutomaticUpdatesEvents::POST_COMMIT => 'clearData',
AutomaticUpdatesEvents::POST_COMMIT => ['clearData', 1000],
];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment