Skip to content

Commit fd181cb

Browse files
committed
Fix concurrency issue, [http_service] shadows [services]
1 parent b4fcee0 commit fd181cb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

fly.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ primary_region = 'ewr'
2929
# resources, number of instances or increasing your hard limit might help.
3030
#
3131
# https://fly.io/docs/reference/load-balancing/#web-service
32-
[services.concurrency]
33-
type = "connections"
32+
#
33+
# Also note: It appears that since I have a [http_service] section, [services] is
34+
# ignored? Originally tried these exact settings in
35+
# [connections.concurrency]
36+
[http_service.concurrency]
37+
type = "requests"
3438
hard_limit = 200
3539
soft_limit = 100

0 commit comments

Comments
 (0)