Skip to content

Commit 6bd52b7

Browse files
authored
fix: by default listen on all ifaces (#56)
Signed-off-by: Matej Vašek <[email protected]>
1 parent 4dc77d6 commit 6bd52b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/func_python/cloudevent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from cloudevents.conversion import to_structured, to_binary
1010

1111
DEFAULT_LOG_LEVEL = logging.INFO
12-
DEFAULT_LISTEN_ADDRESS = "127.0.0.1:8080"
12+
DEFAULT_LISTEN_ADDRESS = "[::]:8080"
1313

1414
logging.basicConfig(level=DEFAULT_LOG_LEVEL)
1515

src/func_python/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import hypercorn.asyncio
88

99
DEFAULT_LOG_LEVEL = logging.INFO
10-
DEFAULT_LISTEN_ADDRESS = "127.0.0.1:8080"
10+
DEFAULT_LISTEN_ADDRESS = "[::]:8080"
1111

1212
logging.basicConfig(level=DEFAULT_LOG_LEVEL)
1313

0 commit comments

Comments
 (0)