This is an automated email from the ASF dual-hosted git repository.
alexstocks pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git
The following commit(s) were added to refs/heads/3.0 by this push:
new 1abbc2e77 fix(adaptive-service): remove useless time format. (#1955)
1abbc2e77 is described below
commit 1abbc2e77c7645788c1d32982f7c46c69c3845b4
Author: Yepeng Zhang <[email protected]>
AuthorDate: Fri Jul 8 13:04:57 2022 +0800
fix(adaptive-service): remove useless time format. (#1955)
---
filter/adaptivesvc/limiter/hill_climbing.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/filter/adaptivesvc/limiter/hill_climbing.go
b/filter/adaptivesvc/limiter/hill_climbing.go
index 296d6e0d4..3ce16ee0a 100644
--- a/filter/adaptivesvc/limiter/hill_climbing.go
+++ b/filter/adaptivesvc/limiter/hill_climbing.go
@@ -130,7 +130,7 @@ func NewHillClimbingUpdater(limiter *HillClimbing)
*HillClimbingUpdater {
seq: limiter.seq.Add(1) - 1,
}
VerboseDebugf("[NewHillClimbingUpdater] A new request arrived, seq: %d,
inflight: %d, time: %s.",
- u.seq, inflight, u.startTime.String())
+ u.seq, inflight, u.startTime)
return u
}