Skip to content

Commit 96cb883

Browse files
committed
temp do a get instead of post
1 parent d05941d commit 96cb883

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

adoption_sources/rescue_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def fetch_pets(self) -> Iterator[AdoptablePet]:
116116
)
117117

118118
session = _session_with_retries()
119-
response = session.post(url, json=payload, headers=headers, timeout=30)
119+
response = session.get(url, json=payload, headers=headers, timeout=30)
120120
response.raise_for_status()
121121

122122
body = response.json()

0 commit comments

Comments
 (0)