We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For redis 3.2.0 calling set_to_redis with expire_time not defined or equal to 0 fails with the following error:
invalid expire time in set
Removing expire_time from redis_conn.set call resolves the issue.
def set_to_redis(self, redis_conn, key, data): """ Set data to Redis Arguments: - redis_conn: Redis connection object - key: String keyword to find. - data: String data Examples: | ${data}= | Set To Redis | ${redis_conn} | BARCODE|1234567890 | ${data} | """ return redis_conn.set(key, data)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For redis 3.2.0 calling set_to_redis with expire_time not defined or equal to 0 fails with the following error:
Removing expire_time from redis_conn.set call resolves the issue.
The text was updated successfully, but these errors were encountered: