Make minor improvements to sessions backup

This commit is contained in:
arberkatellari
2024-06-12 15:37:33 +02:00
committed by Dan Christian Bogos
parent b061770e68
commit f46b37bdf8
15 changed files with 80 additions and 69 deletions

View File

@@ -128,7 +128,7 @@ type DataDB interface {
GetDispatcherHostDrv(string, string) (*DispatcherHost, error)
SetDispatcherHostDrv(*DispatcherHost) error
RemoveDispatcherHostDrv(string, string) error
SetBackupSessionsDrv(sessions []*StoredSession, nodeID string, tenant string) error
SetBackupSessionsDrv(nodeID string, tenant string, sessions []*StoredSession) error
GetSessionsBackupDrv(nodeID string, tenant string) ([]*StoredSession, error)
RemoveSessionsBackupDrv(nodeID, tenant, cgrid string) error
}