Skip to content

Commit

Permalink
bfgapi: remove additional slash from default urls (fix #260) (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuasing authored Sep 30, 2024
1 parent 0d1ca2f commit 1508d68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/bfgapi/bfgapi.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ var (
DefaultPrivateListen = "localhost:8080"
DefaultPublicListen = "localhost:8383"
DefaultPrometheusListen = "localhost:2112"
DefaultPrivateURL = "ws://" + DefaultPrivateListen + "/" + RouteWebsocketPrivate
DefaultPublicURL = "ws://" + DefaultPublicListen + "/" + RouteWebsocketPublic
DefaultPrivateURL = "ws://" + DefaultPrivateListen + RouteWebsocketPrivate
DefaultPublicURL = "ws://" + DefaultPublicListen + RouteWebsocketPublic
DefaultRequestLimit = 10000 // XXX this is a bandaid
DefaultRequestTimeout = 9 // XXX PNOOMA
)
Expand Down

0 comments on commit 1508d68

Please sign in to comment.