Skip to content
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

fix: added bash to update memcache with pymemcache #410

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 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
15 changes: 15 additions & 0 deletions edx_repo_tools/codemods/django42/script_to_update_pymemcache.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

# Function to recursively find and replace the cache backend in files
function update_cache_backend() {
local root_dir=$1
find "$root_dir" -type f -exec perl -i -pe 's/django\.core\.cache\.backends\.memcached\.MemcachedCache/django.core.cache.backends.memcached.PyMemcacheCache/g' {} +
}

# Get the current directory
current_dir=$(pwd)

# Update cache backend in the project
echo "Updating cache backend in project: $current_dir"
update_cache_backend "$current_dir"
echo "Cache backend update completed in project: $current_dir"
16 changes: 16 additions & 0 deletions edx_repo_tools/codemods/django42/update_pymemcache.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import click
import subprocess


def main():
"""
Function to call the bash script which is replacing all
django.core.cache.backends.memcached.MemcachedCache references with
django.core.cache.backends.memcached.PyMemcacheCache in the whole
project and adding pymemcache and removing python-memcached in requirements
"""
subprocess.run(['./edx_repo_tools/codemods/django42/script_to_update_pymemcache.sh'])


if __name__ == '__main__':
main()
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def is_requirement(line):
'tag_release = edx_repo_tools.release.tag_release:main',
'modernize_tox_django42 = edx_repo_tools.codemods.django42.tox_moderniser_django42:main',
'modernize_github_actions_django42 = edx_repo_tools.codemods.django42.github_actions_modernizer_django42:main',
'update_cache = edx_repo_tools.codemods.django42.update_pymemcache:main',
],
},
package_data={
Expand Down