diff options
author | Arun Isaac | 2023-07-28 09:51:20 +0100 |
---|---|---|
committer | Arun Isaac | 2023-07-28 09:52:18 +0100 |
commit | 1a87308071e88a23f44191d57ef7c09f7fdc9196 (patch) | |
tree | 21c2da093b5a288cb68497d3dccde2adbe6526b1 | |
parent | afdbb90c595a9f706568a136d2c87172b3f15754 (diff) | |
download | guix-forge-1a87308071e88a23f44191d57ef7c09f7fdc9196.tar.gz guix-forge-1a87308071e88a23f44191d57ef7c09f7fdc9196.tar.lz guix-forge-1a87308071e88a23f44191d57ef7c09f7fdc9196.zip |
gunicorn: Squeeze adjacent strings together.
* guix/forge/gunicorn.scm (socket->gunicorn-bind): Squeeze adjacent
strings "]" and ":" into one.
-rw-r--r-- | guix/forge/gunicorn.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/forge/gunicorn.scm b/guix/forge/gunicorn.scm index cdc6ecf..0bd9461 100644 --- a/guix/forge/gunicorn.scm +++ b/guix/forge/gunicorn.scm @@ -126,7 +126,7 @@ (($ <forge-ip-socket> (? ipv4-address? ip) port) (string-append ip ":" (number->string port))) (($ <forge-ip-socket> (? ipv6-address? ip) port) - (string-append "[" ip "]" ":" (number->string port))) + (string-append "[" ip "]:" (number->string port))) (($ <forge-unix-socket> path) (string-append "unix:" path)))) |