Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for batchLogOnceIf (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/batch-handlers.go

    							batchLogOnceIf(ctx, err, job.ID+"writeAsArchive")
    							for _, b := range batch {
    								slowCh <- itemOrErr[ObjectInfo]{Item: b}
    							}
    						} else {
    							ri.trackCurrentBucketBatch(r.Source.Bucket, batch)
    							globalBatchJobsMetrics.save(job.ID, ri)
    							// persist in-memory state to disk after every 10secs.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 63.5K bytes
    - Click Count (1)
  2. cmd/logging.go

    	logger.LogIf(ctx, "healing", err, errKind...)
    }
    
    func batchLogIf(ctx context.Context, err error, errKind ...any) {
    	logger.LogIf(ctx, "batch", err, errKind...)
    }
    
    func batchLogOnceIf(ctx context.Context, err error, id string, errKind ...any) {
    	logger.LogOnceIf(ctx, "batch", err, id, errKind...)
    }
    
    func bootLogIf(ctx context.Context, err error, errKind ...any) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 6.8K bytes
    - Click Count (0)
Back to Top