File tree 14 files changed +13
-13
lines changed
14 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ import (
28
28
"gitlab.com/postgres-ai/database-lab/v3/internal/provision"
29
29
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/pool"
30
30
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
31
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
32
31
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval"
33
32
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools/cont"
34
33
"gitlab.com/postgres-ai/database-lab/v3/internal/srv"
35
34
"gitlab.com/postgres-ai/database-lab/v3/internal/telemetry"
36
35
"gitlab.com/postgres-ai/database-lab/v3/pkg/config"
37
36
"gitlab.com/postgres-ai/database-lab/v3/pkg/config/global"
38
37
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
38
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
39
39
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/networks"
40
40
"gitlab.com/postgres-ai/database-lab/v3/version"
41
41
)
Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ import (
18
18
"github.com/docker/go-connections/nat"
19
19
20
20
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/docker"
21
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
22
21
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools"
23
22
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools/cont"
24
23
"gitlab.com/postgres-ai/database-lab/v3/pkg/config/global"
25
24
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
25
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
26
26
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/engine"
27
27
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/networks"
28
28
)
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ import (
18
18
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/databases/postgres/pgconfig"
19
19
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/docker"
20
20
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
21
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
22
21
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
22
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
23
23
)
24
24
25
25
const (
Original file line number Diff line number Diff line change 9
9
"github.com/stretchr/testify/mock"
10
10
11
11
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
12
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision /runners"
12
+ "gitlab.com/postgres-ai/database-lab/v3/pkg /runners"
13
13
)
14
14
15
15
type MockRunner struct {
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import (
20
20
"github.com/shirou/gopsutil/host"
21
21
22
22
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
23
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
24
23
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools"
24
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
25
25
)
26
26
27
27
const (
Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ import (
26
26
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/docker"
27
27
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/pool"
28
28
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
29
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
30
29
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/thinclones/zfs"
31
30
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools"
32
31
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
33
32
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
33
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
34
34
"gitlab.com/postgres-ai/database-lab/v3/pkg/util"
35
35
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/networks"
36
36
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/pglog"
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ import (
12
12
"github.com/pkg/errors"
13
13
14
14
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
15
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
16
15
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/thinclones/lvm"
17
16
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/thinclones/zfs"
18
17
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
19
18
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
19
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
20
20
)
21
21
22
22
// FSManager defines an interface to work different thin-clone managers.
Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ import (
15
15
"github.com/pkg/errors"
16
16
17
17
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
18
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
19
18
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/thinclones/lvm"
20
19
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/thinclones/zfs"
21
20
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/dbmarker"
22
21
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools"
23
22
"gitlab.com/postgres-ai/database-lab/v3/internal/telemetry"
24
23
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
24
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
25
25
)
26
26
27
27
const (
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ import (
12
12
13
13
"github.com/pkg/errors"
14
14
15
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
16
15
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
16
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
17
17
)
18
18
19
19
const (
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import (
11
11
"github.com/pkg/errors"
12
12
13
13
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
14
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
15
14
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
16
15
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
16
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
17
17
)
18
18
19
19
const (
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ import (
16
16
"github.com/pkg/errors"
17
17
18
18
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
19
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
20
19
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/thinclones"
21
20
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
22
21
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
22
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
23
23
"gitlab.com/postgres-ai/database-lab/v3/pkg/util"
24
24
)
25
25
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ package snapshot
8
8
import (
9
9
"github.com/pkg/errors"
10
10
11
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
12
11
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/dbmarker"
13
12
"gitlab.com/postgres-ai/database-lab/v3/pkg/log"
13
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
14
14
)
15
15
16
16
func extractDataStateAt (dbMarker * dbmarker.Marker ) string {
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ import (
21
21
22
22
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/pool"
23
23
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/resources"
24
- "gitlab.com/postgres-ai/database-lab/v3/internal/provision/runners"
25
24
"gitlab.com/postgres-ai/database-lab/v3/internal/provision/thinclones/zfs"
26
25
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/components"
27
26
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/config"
@@ -32,6 +31,7 @@ import (
32
31
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/snapshot"
33
32
"gitlab.com/postgres-ai/database-lab/v3/internal/retrieval/engine/postgres/tools/cont"
34
33
"gitlab.com/postgres-ai/database-lab/v3/internal/telemetry"
34
+ "gitlab.com/postgres-ai/database-lab/v3/pkg/runners"
35
35
36
36
dblabCfg "gitlab.com/postgres-ai/database-lab/v3/pkg/config"
37
37
"gitlab.com/postgres-ai/database-lab/v3/pkg/config/global"
File renamed without changes.
You can’t perform that action at this time.
0 commit comments