From 471d0489b159950c5f542e6372e499f5f8bd4c33 Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Thu, 23 Jun 2022 18:06:20 +0200 Subject: [PATCH] Fix port --- scripts/checkpointsToInflux.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkpointsToInflux.pl b/scripts/checkpointsToInflux.pl index 63518a2..144c90d 100644 --- a/scripts/checkpointsToInflux.pl +++ b/scripts/checkpointsToInflux.pl @@ -16,7 +16,7 @@ my $newCheckpoints = './data/cc-metric-store/checkpoints'; my @CheckpClusters; my $verbose = 1; my $restClient = REST::Client->new(); -$restClient->setHost('http://localhost:8087'); # Adapt port here! +$restClient->setHost('http://localhost:8086'); # Adapt port here! $restClient->addHeader('Authorization', "Token 74008ea2a8dad5e6f856838a90c6392e"); # compare .env file $restClient->addHeader('Content-Type', 'text/plain; charset=utf-8'); $restClient->addHeader('Accept', 'application/json');