Skip to content

Commit

Permalink
Conditionally disable mem cache (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-rieke authored Dec 5, 2024
1 parent d38a57a commit 4ea37ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atrium/vestibulum/trcshbase/trcsh.go
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ func CommonMain(envPtr *string, addrPtr *string, envCtxPtr *string,
memprotectopts.MemProtect(nil, secretIDPtr)
memprotectopts.MemProtect(nil, appRoleIDPtr)

trcshDriverConfig, err := TrcshInitConfig(driverConfigPtr, *envPtr, *regionPtr, pathParam, true)
trcshDriverConfig, err := TrcshInitConfig(driverConfigPtr, *envPtr, *regionPtr, pathParam, !prod.IsProd())
if err != nil {
fmt.Printf("trcsh config setup failure: %s\n", err.Error())
os.Exit(124)
Expand Down

0 comments on commit 4ea37ae

Please sign in to comment.