From f04902dbed54724716f70de9ae3208ae6de25858 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Wed, 11 Apr 2018 12:52:32 -0700 Subject: [PATCH] functional: rename etcd log paths Signed-off-by: Gyuho Lee --- functional.yaml | 6 +++--- functional/tester/cluster_test.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/functional.yaml b/functional.yaml index 1ff8f2916..d4e23e6f3 100644 --- a/functional.yaml +++ b/functional.yaml @@ -3,7 +3,7 @@ agent-configs: agent-addr: 127.0.0.1:19027 failpoint-http-addr: http://127.0.0.1:7381 base-dir: /tmp/etcd-functional-1 - etcd-log-path: /tmp/etcd-functional-1/current-etcd.log + etcd-log-path: /tmp/etcd-functional-1/etcd.log etcd-client-proxy: false etcd-peer-proxy: true etcd-client-endpoint: 127.0.0.1:1379 @@ -52,7 +52,7 @@ agent-configs: agent-addr: 127.0.0.1:29027 failpoint-http-addr: http://127.0.0.1:7382 base-dir: /tmp/etcd-functional-2 - etcd-log-path: /tmp/etcd-functional-2/current-etcd.log + etcd-log-path: /tmp/etcd-functional-2/etcd.log etcd-client-proxy: false etcd-peer-proxy: true etcd-client-endpoint: 127.0.0.1:2379 @@ -101,7 +101,7 @@ agent-configs: agent-addr: 127.0.0.1:39027 failpoint-http-addr: http://127.0.0.1:7383 base-dir: /tmp/etcd-functional-3 - etcd-log-path: /tmp/etcd-functional-3/current-etcd.log + etcd-log-path: /tmp/etcd-functional-3/etcd.log etcd-client-proxy: false etcd-peer-proxy: true etcd-client-endpoint: 127.0.0.1:3379 diff --git a/functional/tester/cluster_test.go b/functional/tester/cluster_test.go index 843f343bb..e7cf25762 100644 --- a/functional/tester/cluster_test.go +++ b/functional/tester/cluster_test.go @@ -32,7 +32,7 @@ func Test_read(t *testing.T) { AgentAddr: "127.0.0.1:19027", FailpointHTTPAddr: "http://127.0.0.1:7381", BaseDir: "/tmp/etcd-functional-1", - EtcdLogPath: "/tmp/etcd-functional-1/current-etcd.log", + EtcdLogPath: "/tmp/etcd-functional-1/etcd.log", EtcdClientProxy: false, EtcdPeerProxy: true, EtcdClientEndpoint: "127.0.0.1:1379", @@ -83,7 +83,7 @@ func Test_read(t *testing.T) { AgentAddr: "127.0.0.1:29027", FailpointHTTPAddr: "http://127.0.0.1:7382", BaseDir: "/tmp/etcd-functional-2", - EtcdLogPath: "/tmp/etcd-functional-2/current-etcd.log", + EtcdLogPath: "/tmp/etcd-functional-2/etcd.log", EtcdClientProxy: false, EtcdPeerProxy: true, EtcdClientEndpoint: "127.0.0.1:2379", @@ -134,7 +134,7 @@ func Test_read(t *testing.T) { AgentAddr: "127.0.0.1:39027", FailpointHTTPAddr: "http://127.0.0.1:7383", BaseDir: "/tmp/etcd-functional-3", - EtcdLogPath: "/tmp/etcd-functional-3/current-etcd.log", + EtcdLogPath: "/tmp/etcd-functional-3/etcd.log", EtcdClientProxy: false, EtcdPeerProxy: true, EtcdClientEndpoint: "127.0.0.1:3379",