Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MakeBucketHook (0.23 sec)

  1. cmd/bucket-handlers.go

    			// message.
    			globalSiteReplicationSys.MakeBucketHook(ctx, bucket, opts)
    		}
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Load updated bucket metadata into memory.
    	globalNotificationSys.LoadBucketMetadata(GlobalContext, bucket)
    
    	// Call site replication hook
    	replLogIf(ctx, globalSiteReplicationSys.MakeBucketHook(ctx, bucket, opts))
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	siteReplicationEdit     = "SiteReplicationEdit"
    )
    
    // MakeBucketHook - called during a regular make bucket call when cluster
    // replication is enabled. It is responsible for the creation of the same bucket
    // on remote clusters, and creating replication rules on local and peer
    // clusters.
    func (c *SiteReplicationSys) MakeBucketHook(ctx context.Context, bucket string, opts MakeBucketOptions) error {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
Back to top