From 267b9986dc3dcf1f23b6e5c07bc2a1c3c6338c07 Mon Sep 17 00:00:00 2001 From: wujianhua <1107015496@qq.com> Date: Tue, 18 Jul 2023 12:08:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E8=A7=A3=E6=9E=90?= =?UTF-8?q?=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sls/producer_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sls/producer_test.go b/sls/producer_test.go index aac4c85..788268a 100644 --- a/sls/producer_test.go +++ b/sls/producer_test.go @@ -12,8 +12,8 @@ var pd *slsProducer func init() { pd = NewSLSProducer( WithEndpoint("cn-hangzhou.log.aliyuncs.com"), - WithAccessKey("-"), // 传入阿里云sls的key - WithAccessSecret("-"), // 传入阿里云sls的Secret + WithAccessKey("LTAI5t8H6fmyMPfZ8JsBmcwS"), // 传入阿里云sls的key + WithAccessSecret("EyWWwT2pOYRVWueYkc9Nnwy3RisYqC"), // 传入阿里云sls的Secret ) }