()
| 35 | } |
| 36 | |
| 37 | func (r *ReqOpts) applyDefaults() { |
| 38 | if r.TenantID == "" { |
| 39 | r.TenantID = util.FakeTenantID |
| 40 | } |
| 41 | if r.Time.IsZero() { |
| 42 | r.Time = time.Now() |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | type encodingFn func(partitionID int32, tenantID string, req *tempopb.PushBytesRequest, maxSize int) ([]*kgo.Record, error) |
| 47 |