@@ -14,7 +14,6 @@ import (
14
14
"sync"
15
15
"time"
16
16
17
- "github.com/AlekSi/pointer"
18
17
"github.com/jackc/pgtype/pgxtype"
19
18
"github.com/jackc/pgx/v4"
20
19
_ "github.com/lib/pq" // Register Postgres database driver.
@@ -29,7 +28,6 @@ import (
29
28
"gitlab.com/postgres-ai/database-lab/v3/pkg/models"
30
29
"gitlab.com/postgres-ai/database-lab/v3/pkg/util"
31
30
"gitlab.com/postgres-ai/database-lab/v3/pkg/util/pglog"
32
- "gitlab.com/postgres-ai/database-lab/v3/version"
33
31
)
34
32
35
33
const (
@@ -46,36 +44,20 @@ type Config struct {
46
44
47
45
// Base provides cloning service.
48
46
type Base struct {
49
- config * Config
50
- cloneMutex sync.RWMutex
51
- clones map [string ]* CloneWrapper
52
- instanceStatus * models.InstanceStatus
53
- snapshotBox SnapshotBox
54
- provision * provision.Provisioner
55
- tm * telemetry.Agent
56
- observingCh chan string
47
+ config * Config
48
+ cloneMutex sync.RWMutex
49
+ clones map [string ]* CloneWrapper
50
+ snapshotBox SnapshotBox
51
+ provision * provision.Provisioner
52
+ tm * telemetry.Agent
53
+ observingCh chan string
57
54
}
58
55
59
56
// NewBase instances a new Base service.
60
57
func NewBase (cfg * Config , provision * provision.Provisioner , tm * telemetry.Agent , observingCh chan string ) * Base {
61
58
return & Base {
62
- config : cfg ,
63
- clones : make (map [string ]* CloneWrapper ),
64
- instanceStatus : & models.InstanceStatus {
65
- Status : & models.Status {
66
- Code : models .StatusOK ,
67
- Message : models .InstanceMessageOK ,
68
- },
69
- Engine : models.Engine {
70
- Version : version .GetVersion (),
71
- StartedAt : pointer .ToTimeOrNil (time .Now ().Truncate (time .Second )),
72
- Telemetry : pointer .ToBool (tm .IsEnabled ()),
73
- },
74
- Cloning : models.Cloning {
75
- Clones : make ([]* models.Clone , 0 ),
76
- },
77
- Provisioner : provision .ContainerOptions (),
78
- },
59
+ config : cfg ,
60
+ clones : make (map [string ]* CloneWrapper ),
79
61
provision : provision ,
80
62
tm : tm ,
81
63
observingCh : observingCh ,
@@ -88,7 +70,6 @@ func NewBase(cfg *Config, provision *provision.Provisioner, tm *telemetry.Agent,
88
70
// Reload reloads base cloning configuration.
89
71
func (c * Base ) Reload (cfg Config ) {
90
72
* c .config = cfg
91
- c .instanceStatus .Provisioner = c .provision .ContainerOptions ()
92
73
}
93
74
94
75
// Run initializes and runs cloning component.
0 commit comments