Skip to content

Commit

Permalink
Turn off SSL for redis service
Browse files Browse the repository at this point in the history
  • Loading branch information
tombatchelor committed Oct 31, 2024
1 parent 40eac11 commit 547b6cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cartservice/src/cartstore/ValkeyCartStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public ValkeyCartStore(ILogger<ValkeyCartStore> logger, string valkeyAddress)
// Serialize empty cart into byte array.
var cart = new Oteldemo.Cart();
_emptyCartBytes = cart.ToByteArray();
_connectionString = $"{valkeyAddress},allowAdmin=true,abortConnect=false";
_connectionString = $"{valkeyAddress},allowAdmin=true,ssl=false,abortConnect=false";

_redisConnectionOptions = ConfigurationOptions.Parse(_connectionString);

Expand Down

0 comments on commit 547b6cf

Please sign in to comment.