diff options
author | Timo Tijhof <krinkle@fastmail.com> | 2024-10-28 03:26:05 +0000 |
---|---|---|
committer | Timo Tijhof <krinkle@fastmail.com> | 2024-10-28 03:37:31 +0000 |
commit | 72338de32b249a7cff0b758746c0896fd649e53b (patch) | |
tree | 42d32243526ad64912383812394b082140047eaa /maintenance | |
parent | 0f3c06900813aab90673c1c38d41843f82020ae8 (diff) | |
download | mediawikicore-72338de32b249a7cff0b758746c0896fd649e53b.tar.gz mediawikicore-72338de32b249a7cff0b758746c0896fd649e53b.zip |
objectcache: Move RedisConnRef.php to /libs/objectcache/
Because:
* component description on mw:Maintainers,
* Phab description and who triages/maintains the code,
* primary usage of these classes,
* consistency with MemcachedClient.php.
Follows-up I7a874e1ee1 (2144fef6d1), which namespaced these under
a new Wikimedia\Redis namespace instead based on the prior directory
naming.
Bug: T364652
Bug: T353529
Change-Id: I4c6a349afcc4039bec27413af9511639f8c0c4b0
Diffstat (limited to 'maintenance')
-rw-r--r-- | maintenance/includes/ForkController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/includes/ForkController.php b/maintenance/includes/ForkController.php index fb29090114d5..9bcd3a604c16 100644 --- a/maintenance/includes/ForkController.php +++ b/maintenance/includes/ForkController.php @@ -22,7 +22,7 @@ namespace MediaWiki\Maintenance; use MediaWiki\MediaWikiServices; use RuntimeException; -use Wikimedia\Redis\RedisConnectionPool; +use Wikimedia\ObjectCache\RedisConnectionPool; /** * Manage forking inside CLI maintenance scripts. |