Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stale_uploads_expiry (0.18 sec)

  1. internal/config/api/api.go

    	if err != nil {
    		return cfg, err
    	}
    	cfg.StaleUploadsCleanupInterval = staleUploadsCleanupInterval
    
    	staleUploadsExpiry, err := time.ParseDuration(env.Get(EnvAPIStaleUploadsExpiry, kvs.GetWithDefault(apiStaleUploadsExpiry, DefaultKVS)))
    	if err != nil {
    		return cfg, err
    	}
    	cfg.StaleUploadsExpiry = staleUploadsExpiry
    
    	cfg.SyncEvents = env.Get(EnvAPISyncEvents, kvs.Get(apiSyncEvents)) == config.EnableOn
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. cmd/handler-api.go

    	// N B api.transition_workers will be deprecated
    	if globalTransitionState != nil {
    		globalTransitionState.UpdateWorkers(cfg.TransitionWorkers)
    	}
    	t.transitionWorkers = cfg.TransitionWorkers
    
    	t.staleUploadsExpiry = cfg.StaleUploadsExpiry
    	t.staleUploadsCleanupInterval = cfg.StaleUploadsCleanupInterval
    	t.deleteCleanupInterval = cfg.DeleteCleanupInterval
    	t.enableODirect = cfg.EnableODirect
    	t.gzipObjects = cfg.GzipObjects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. cmd/testdata/undeleteable-object.tgz

    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
Back to top