Skip to content

Commit

Permalink
fix: wrong redis host for worker
Browse files Browse the repository at this point in the history
  • Loading branch information
TrayserCassa committed Oct 7, 2024
1 parent 02ac2cf commit 3d36867
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/v1/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ func (s *Store) getWorker() []corev1.EnvVar {
Name: "MESSENGER_TRANSPORT_DSN",
Value: fmt.Sprintf(
"rediss://%s:%d/messages/symfony/consumer?auto_setup=true&serializer=1&stream_max_entries=0&dbindex=%d",
s.Spec.AppCache.RedisHost,
s.Spec.AppCache.RedisPort,
s.Spec.AppCache.RedisIndex,
s.Spec.Worker.RedisHost,
s.Spec.Worker.RedisPort,
s.Spec.Worker.RedisIndex,
),
},
}
Expand Down

0 comments on commit 3d36867

Please sign in to comment.