From 4424f7aeba9bbdd7b9ce6485f5bd593530dbd085 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Mon, 9 Sep 2024 22:02:13 +0100 Subject: [PATCH] - Correct Pulsar URL defaults for graph utils to be localhost again --- scripts/graph-show | 2 +- scripts/graph-to-turtle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/graph-show b/scripts/graph-show index 63da0e19..a737c97b 100755 --- a/scripts/graph-show +++ b/scripts/graph-show @@ -8,7 +8,7 @@ import argparse import os from trustgraph.clients.triples_query_client import TriplesQueryClient -default_pulsar_host = os.getenv("PULSAR_HOST", 'pulsar://pulsar:6650') +default_pulsar_host = os.getenv("PULSAR_HOST", 'pulsar://localhost:6650') def show_graph(pulsar): diff --git a/scripts/graph-to-turtle b/scripts/graph-to-turtle index a1c0e000..bff03fc6 100755 --- a/scripts/graph-to-turtle +++ b/scripts/graph-to-turtle @@ -11,7 +11,7 @@ import rdflib import io import sys -default_pulsar_host = os.getenv("PULSAR_HOST", 'pulsar://pulsar:6650') +default_pulsar_host = os.getenv("PULSAR_HOST", 'pulsar://localhost:6650') def show_graph(pulsar):