Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for QueueReplicationHeal (0.17 sec)

  1. cmd/bucket-replication.go

    					Targets:                 tgtsMap,
    				}:
    				case <-ctx.Done():
    					continue
    				}
    			}
    		}
    	}()
    	return diffCh, nil
    }
    
    // QueueReplicationHeal is a wrapper for queueReplicationHeal
    func QueueReplicationHeal(ctx context.Context, bucket string, oi ObjectInfo, retryCount int) {
    	// ignore modtime zero objects
    	if oi.ModTime.IsZero() {
    		return
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 118K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    					w.Header()[xhttp.AmzVersionID] = []string{gr.ObjInfo.VersionID}
    					w.Header()[xhttp.AmzDeleteMarker] = []string{strconv.FormatBool(gr.ObjInfo.DeleteMarker)}
    				}
    				QueueReplicationHeal(ctx, bucket, gr.ObjInfo, 0)
    			}
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    	defer gr.Close()
    
    	objInfo := gr.ObjInfo
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 120.6K bytes
    - Viewed (0)
Back to top