mhassan1 / redis-memory-server

Redis Server for testing. The server will allow you to connect your favorite client library to the Redis Server and run parallel integration tests isolated from each other.
MIT License
76 stars 11 forks source link

feat: enable binary download via http protocol #11

Closed hyunjinjeong closed 2 years ago

hyunjinjeong commented 2 years ago

I added a simple logic to support Redis binary download using the HTTP protocol.

I want to use a custom .tar.gz file uploaded on the private network file storage, which only supports HTTP. However, it seems impossible to download via HTTP because the protocol is fixed to HTTPS. It leads to an error such as 'SSL routines:ssl3_get_record:wrong version number'

I couldn't find a contribution guide, so I just open this PR :)

mhassan1 commented 2 years ago

Thank you for the contribution!