We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec5b6a commit a7bc262Copy full SHA for a7bc262
posthog/request.py
@@ -93,7 +93,7 @@ def _process_response(
93
94
def decide(api_key: str, host: Optional[str] = None, gzip: bool = False, timeout: int = 15, **kwargs) -> Any:
95
"""Post the `kwargs to the decide API endpoint"""
96
- res = post(api_key, host, "/decide/?v=3", gzip, timeout, **kwargs)
+ res = post(api_key, host, "/decide/?v=4", gzip, timeout, **kwargs)
97
return _process_response(res, success_message="Feature flags decided successfully")
98
99
0 commit comments