fix: harden Redis client timeouts and correct userid column bugs

Redis client had a 35s worst-case stall (10s read/write timeout x3
retries) on a single call, which under concurrent load exhausted the
connection pool and cascaded into a full outage. Timeouts and retries
are now tight enough that a degraded Redis fails fast instead of
tying up pooled connections.

Also fixes two userid/appuserid column mix-ups in delivery queries
(deliveryController.go, domain/delivery.go) and points the Dockerfile
build at main.go explicitly.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Suriya
2026-07-20 20:40:35 +05:30
parent 588f27b917
commit 36eb8cd194
4 changed files with 18 additions and 13 deletions

View File

@@ -792,7 +792,7 @@ func GetUserDeliveriesv1(input models.DeliveryQuery) []models.Deliveryinfo {
func GetAppUserDeliveries(input models.DeliveryQuery) []models.Deliveryinfo {
var data []models.Deliveryinfo
logInfo("App User Deliveries", "appuserid", input.UserID)
logInfo("App User Deliveries", "appuserid", input.Appuserid)
var (
q1 strings.Builder
@@ -805,10 +805,10 @@ func GetAppUserDeliveries(input models.DeliveryQuery) []models.Deliveryinfo {
q1.WriteString(deliveries)
q1.WriteString(" WHERE b.moduleid = 6 AND g.status = 'Active' ")
// 🔹 Apply userid filter ONLY if userid > 0
if input.UserID > 0 {
q1.WriteString(" AND g.userid = ? ")
params = append(params, input.UserID)
// 🔹 Apply appuserid filter ONLY if appuserid > 0
if input.Appuserid > 0 {
q1.WriteString(" AND a.userid = ? ")
params = append(params, input.Appuserid)
}
// 🔹 Status filter (IGNORE if status = all)