diff options
author | Munyoki Kilyungi | 2024-02-10 20:00:21 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-02-10 20:00:21 +0300 |
commit | 307468ea394c905779e5ea1147175df3d1df0d2f (patch) | |
tree | 46854619b468c5ef7e54ebba7a9841239f13c228 | |
parent | 4715cc2c7713a635ed088a22e4eaa10509600c0b (diff) | |
download | gn-gemtext-307468ea394c905779e5ea1147175df3d1df0d2f.tar.gz |
New issue.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r-- | issues/add-logging-to-rdf-endpoints.gmi | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/issues/add-logging-to-rdf-endpoints.gmi b/issues/add-logging-to-rdf-endpoints.gmi new file mode 100644 index 0000000..25064d6 --- /dev/null +++ b/issues/add-logging-to-rdf-endpoints.gmi @@ -0,0 +1,23 @@ +# Improve Logging in GN3 RDF endpoints + +## Tags + +* assigned: bonfacem +* priority: high +* type: API +* keywords: RDF, gn3 + +## Description + +Right now troubleshooting RDF endpoints as mentioned in: + +=> issues/non-deterministic-gn3-setup-on-tux01.gmi + +... is difficult since we return an empty result on failure. The culprit: + +``` +... + except (RemoteDisconnected, URLError) as error: + breakpoint() + return jsonify({}) +``` |