@@ -113,7 +113,7 @@ func (r *Router) RouterCallImpl(ctx context.Context,
113113 if since := time .Since (timeStart ); since > timeout {
114114 r .metrics ().RequestDuration (since , false , false )
115115
116- r .log ().Debugf (ctx , "return result on timeout; since %s of timeout %s" , since , timeout )
116+ r .log ().Debugf (ctx , "Return result on timeout; since %s of timeout %s" , since , timeout )
117117 if err == nil {
118118 err = fmt .Errorf ("cant get call cause call impl timeout" )
119119 }
@@ -136,7 +136,7 @@ func (r *Router) RouterCallImpl(ctx context.Context,
136136 continue
137137 }
138138
139- r .log ().Infof (ctx , "try call %s on replicaset %s for bucket %d" , fnc , rs .info .Name , bucketID )
139+ r .log ().Infof (ctx , "Try call %s on replicaset %s for bucket %d" , fnc , rs .info .Name , bucketID )
140140
141141 future := rs .conn .Do (req , opts .PoolMode )
142142
@@ -146,7 +146,7 @@ func (r *Router) RouterCallImpl(ctx context.Context,
146146 return nil , nil , fmt .Errorf ("got error on future.Get(): %w" , err )
147147 }
148148
149- r .log ().Debugf (ctx , "got call result response data %v" , respData )
149+ r .log ().Debugf (ctx , "Got call result response data %v" , respData )
150150
151151 if len (respData ) == 0 {
152152 // vshard.storage.call(func) returns up to two values:
@@ -177,7 +177,7 @@ func (r *Router) RouterCallImpl(ctx context.Context,
177177 // So we just retry here as a temporary solution.
178178 r .metrics ().RetryOnCall ("bucket_migrate" )
179179
180- r .log ().Debugf (ctx , "retrying fnc '%s' cause got vshard error: %v" , fnc , & vshardError )
180+ r .log ().Debugf (ctx , "Retrying fnc '%s' cause got vshard error: %v" , fnc , & vshardError )
181181
182182 // this vshardError will be returned to a caller in case of timeout
183183 err = & vshardError
0 commit comments