1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

fix(snapshots): fix a data race in the snapshot code EE-2717 (#6654)

This commit is contained in:
andres-portainer 2022-03-16 11:27:28 -03:00 committed by GitHub
parent 78150a738f
commit 226ffdcd20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 49 deletions

View file

@ -1322,7 +1322,6 @@ type (
// SnapshotService represents a service for managing environment(endpoint) snapshots
SnapshotService interface {
Start()
Stop()
SetSnapshotInterval(snapshotInterval string) error
SnapshotEndpoint(endpoint *Endpoint) error
}