From 9d7b2f5297c23f1b849a48706c1d57b3ec08a009 Mon Sep 17 00:00:00 2001 From: Natalie Schultz <90212258+nataliejschultz@users.noreply.github.com> Date: Mon, 17 Jun 2024 12:06:01 -0600 Subject: [PATCH] http --> https Call isn't going through and I think it's because i'm using http instead of https. This might be a security restriction with GitHub Actions. --- emission/individual_tests/TestOverpass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emission/individual_tests/TestOverpass.py b/emission/individual_tests/TestOverpass.py index ff36ac91d..4ab6144fe 100644 --- a/emission/individual_tests/TestOverpass.py +++ b/emission/individual_tests/TestOverpass.py @@ -28,7 +28,7 @@ def setUp(self): sample_data = '[out:json][bbox];way[amenity=parking];out;&bbox=-122.1111238,37.4142118,-122.1055791,37.4187945' call_base = 'api/interpreter?data=' self.de_url_base = 'https://lz4.overpass-api.de/'+ call_base + sample_data - self.gfbk_url_base = 'http://overpass.geofabrik.de/' + OVERPASS_KEY + '/' + call_base + sample_data + self.gfbk_url_base = 'https://overpass.geofabrik.de/' + OVERPASS_KEY + '/' + call_base + sample_data def test_overpass(self): r_gfbk = requests.get(self.gfbk_url_base)