From 2a9dd021e6c7b56f8877ca56f825bb0e993b2ad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paulo=20Sima=CC=83o?= Date: Mon, 11 Oct 2021 15:05:01 -0300 Subject: [PATCH] fix path --- api/replay/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/replay/cli.go b/api/replay/cli.go index 4f80c36..8d73636 100644 --- a/api/replay/cli.go +++ b/api/replay/cli.go @@ -17,7 +17,7 @@ type Cli struct { func (c *Cli) Log(l *types.Log) error { l.Alias = c.ReplayEnvAlias() l.Dtlog = time.Now() - return c.HttpCli().JsonPost("/api/v1/log", l, nil) + return c.HttpCli().JsonPost("/api/v1/log/add", l, nil) } func (c *Cli) ReplayEnvQueueId() string { return os.Getenv("REPLAY_QUEUEID")