From 306081281f1dd54a4160e87d181ae2944b960dfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 16 Apr 2019 16:04:58 +0200 Subject: [PATCH] fix: reload cache on start, bump dependencies --- Pipfile.lock | 4 ++-- bin/start_website.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index 69a1651..5d93397 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -247,7 +247,7 @@ "har2tree": { "editable": true, "git": "https://github.com/viper-framework/har2tree.git", - "ref": "a90418ace183e5ebf8891bebe0a7efc7a8d910f7" + "ref": "518808567e9d69b4047eba9e15b34838eae1962a" }, "hyperlink": { "hashes": [ @@ -457,7 +457,7 @@ "scrapysplashwrapper": { "editable": true, "git": "https://github.com/viper-framework/ScrapySplashWrapper.git", - "ref": "cf53edeeff2ed2ba3bc65050baae2175127078e2" + "ref": "aafeb155b8637662c396685bd104f95661441759" }, "service-identity": { "hashes": [ diff --git a/bin/start_website.py b/bin/start_website.py index b2355e2..4681c89 100755 --- a/bin/start_website.py +++ b/bin/start_website.py @@ -9,7 +9,7 @@ from redis import StrictRedis if __name__ == '__main__': - r = StrictRedis(unix_socket_path=get_socket_path('cache'), db=1) + r = StrictRedis(unix_socket_path=get_socket_path('cache')) r.delete('cache_loaded') website_dir = get_homedir() / 'website' Popen([str(website_dir / '3rdparty.sh')], cwd=website_dir)