From 894fe537252bc11cbc21804be76a84b71d1e9487 Mon Sep 17 00:00:00 2001 From: yash-2264 <–yash.sharma.6.1999@gmail.com> Date: Tue, 1 Jul 2025 21:47:40 +0530 Subject: [PATCH] version 2 for today --- faafo/faafo/api/service.py | 2 +- faafo/faafo/worker/service.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/faafo/faafo/api/service.py b/faafo/faafo/api/service.py index 74ef9c8..08727a8 100644 --- a/faafo/faafo/api/service.py +++ b/faafo/faafo/api/service.py @@ -43,7 +43,7 @@ api_opts = [ default='0.0.0.0', help='Listen address.'), cfg.IntOpt('bind-port', - default='80', + default='8080', help='Bind port.'), cfg.StrOpt('database-url', default='sqlite:////tmp/sqlite.db', diff --git a/faafo/faafo/worker/service.py b/faafo/faafo/worker/service.py index 18d1017..a24d6d0 100644 --- a/faafo/faafo/worker/service.py +++ b/faafo/faafo/worker/service.py @@ -39,7 +39,7 @@ CONF = cfg.CONF worker_opts = [ cfg.StrOpt('endpoint-url', - default='http://localhost', + default='http://localhost:8080', help='API connection URL') ]