mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
fix(edgegroups): fix data-race in edgeGroupCreate EE-4435 (#8477)
This commit is contained in:
parent
e66dea44e3
commit
f081631808
15 changed files with 800 additions and 317 deletions
|
@ -36,10 +36,13 @@ type testDatastore struct {
|
|||
webhook dataservices.WebhookService
|
||||
}
|
||||
|
||||
func (d *testDatastore) BackupTo(io.Writer) error { return nil }
|
||||
func (d *testDatastore) Open() (bool, error) { return false, nil }
|
||||
func (d *testDatastore) Init() error { return nil }
|
||||
func (d *testDatastore) Close() error { return nil }
|
||||
func (d *testDatastore) BackupTo(io.Writer) error { return nil }
|
||||
func (d *testDatastore) Open() (bool, error) { return false, nil }
|
||||
func (d *testDatastore) Init() error { return nil }
|
||||
func (d *testDatastore) Close() error { return nil }
|
||||
func (d *testDatastore) UpdateTx(func(dataservices.DataStoreTx) error) error { return nil }
|
||||
func (d *testDatastore) ViewTx(func(dataservices.DataStoreTx) error) error { return nil }
|
||||
|
||||
func (d *testDatastore) CheckCurrentEdition() error { return nil }
|
||||
func (d *testDatastore) MigrateData() error { return nil }
|
||||
func (d *testDatastore) Rollback(force bool) error { return nil }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue