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 Dec 3, 2024
1 parent b52bcb4 commit 4b2cad7
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 4b2cad7

Please sign in to comment.