Starts tracing with the given name
(c context.Context, name string)
| 236 | |
| 237 | // Starts tracing with the given name |
| 238 | func (gj *graphjinEngine) spanStart(c context.Context, name string) (context.Context, Spaner) { |
| 239 | return gj.trace.Start(c, name) |
| 240 | } |
| 241 | |
| 242 | // Retry operation with the default policy. |
| 243 | func retryOperation(c context.Context, fn func() error) (err error) { |
no test coverage detected