We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fbb54a commit fa5e757Copy full SHA for fa5e757
kite-service/internal/core/gateway/manager.go
@@ -83,6 +83,9 @@ func (m *GatewayManager) populateGateways(ctx context.Context) error {
83
}
84
85
for _, app := range apps {
86
+ // Starting thousands of gateways at once can cause problems internally.
87
+ time.Sleep(100 * time.Millisecond)
88
+
89
if err := m.addGateway(ctx, app); err != nil {
90
slog.With("error", err).Error("failed to add gateway")
91
0 commit comments