From 7ad4c4d4d924d92c4805bfe228514a5d2e3bf03f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Pal=C3=A9ologue?= Date: Wed, 29 Jun 2022 15:06:13 +0200 Subject: [PATCH 1/3] README: fix typo in local server address MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Paléologue --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c2cc4558..9b7d65b5 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Use a configuration similar to this for the `vcap-local.json` file (get credenti ``` -View your app at : http://localhost:8000 +View your app at : [http://localhost:9000](http://localhost:9000) Send new messages with `curl` : ``` From 882b55c5573e6d5422e915ab08ab7a5e24225dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Pal=C3=A9ologue?= Date: Wed, 29 Jun 2022 15:07:10 +0200 Subject: [PATCH 2/3] Update requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Paléologue --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index bf9abccf..12855870 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,9 @@ requests -Flask==1.0 +Flask Werkzeug==0.16.0 cloudant==2.4.0 flask-cors json2html jsonpickle -watson-developer-cloud==2.4.0 +watson-developer-cloud==2.5.4 ibm-watson==4.0.1 \ No newline at end of file From 2b7eeedcb5e63bac9f69f49581b1854edc0352e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Pal=C3=A9ologue?= Date: Wed, 29 Jun 2022 15:07:28 +0200 Subject: [PATCH 3/3] Fix missing variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Paléologue --- hovor/outcome_determiners/workspace_outcome_determiner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hovor/outcome_determiners/workspace_outcome_determiner.py b/hovor/outcome_determiners/workspace_outcome_determiner.py index 153cc7f4..51002a55 100644 --- a/hovor/outcome_determiners/workspace_outcome_determiner.py +++ b/hovor/outcome_determiners/workspace_outcome_determiner.py @@ -18,7 +18,7 @@ # Cutoff for the fallback FALLBACK_THRESHOLD = 0.2 - +MAX_WS_PAGINATION = 5 class WorkspaceOutcomeDeterminer(OutcomeDeterminerBase): _workspace_cache_file = "./odws_cache.p"