Skip to content

Commit

Permalink
Merge pull request #29 from edarevsky/enable-host-check-fix
Browse files Browse the repository at this point in the history
Fix enable_host_check argument
  • Loading branch information
shemma3 authored Dec 15, 2024
2 parents f134eef + 26cf85e commit 112f060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GSSDK.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __str__(self):

class GSRequest():
DEFAULT_API_DOMAIN = "us1.gigya.com"
VERSION = "3.5.1"
VERSION = "3.5.2"
caCertsPath = os.path.join(os.path.dirname(__file__), "cacert.pem")

_domain = ""
Expand Down Expand Up @@ -175,7 +175,7 @@ def send(self, timeout=None):
self.traceField("params", self._params)
self.traceField("useHTTPS", self._useHTTPS)
self.traceField("userKey", self._userKey)
responseStr = self.sendRequest("POST", self._host, self._path, self._params, self._apiKey, self._secretKey, self._useHTTPS, timeout, self._userKey)
responseStr = self.sendRequest("POST", self._host, self._path, self._params, self._apiKey, self._secretKey, self._useHTTPS, timeout, self._userKey, self._enableHostCheck)

return GSResponse(self._method, responseStr, None, 0, None, self._traceLog)

Expand Down

0 comments on commit 112f060

Please sign in to comment.