Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions bucket-targets.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ type BucketTarget struct {
Edge bool `json:"edge"` // target is recipient of edge traffic
EdgeSyncBeforeExpiry bool `json:"edgeSyncBeforeExpiry"` // must replicate to edge before expiry
OfflineCount int64 `json:"offlineCount"`
DisableSSL bool `json:"disableSSL"`
Comment thread
harshavardhana marked this conversation as resolved.
Outdated
}

// Credentials holds access and secret keys.
Expand Down Expand Up @@ -126,6 +127,7 @@ func (t *BucketTarget) Clone() BucketTarget {
Edge: t.Edge,
EdgeSyncBeforeExpiry: t.EdgeSyncBeforeExpiry,
OfflineCount: t.OfflineCount,
DisableSSL: t.DisableSSL,
Comment thread
harshavardhana marked this conversation as resolved.
Outdated
}
}

Expand Down
Loading