Skip to content

Commit

Permalink
Fix datatype of NUM_PROXIES (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cooke authored Aug 10, 2021
1 parent 5962891 commit 14f1bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
},
"DEFAULT_PAGINATION_CLASS": "backend.pagination.FormattedPagination",
"PAGE_SIZE": 100,
"NUM_PROXIES": os.getenv("NUM_PROXIES", 0),
"NUM_PROXIES": int(os.getenv("NUM_PROXIES", 0)),
}

MAIL_SOCK_URL = "http+unix://%2Ftmp%2Fmailusv.sock/send"
Expand Down

0 comments on commit 14f1bf7

Please sign in to comment.