You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead what actually happens, is that it will iterate over the string and attempt to create a host for every letter in the string. Then one of two things is possible:
If the host name contains a port, the constructor will fail on trying to parse the ':' separator.
If the host name does not contain a port, the constructor will succeed, but set and get calls will run.
The text was updated successfully, but these errors were encountered:
See here https://github.com/linsomniac/python-memcached/blob/master/memcache.py#L280. The docstring indicates that when a string is passed in for the servers parameter, the client will treat it as a single host.
Instead what actually happens, is that it will iterate over the string and attempt to create a host for every letter in the string. Then one of two things is possible:
The text was updated successfully, but these errors were encountered: