File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
engine/internal/retrieval/engine/postgres Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ func (r *RestoreJob) Reload(cfg map[string]interface{}) (err error) {
165
165
166
166
// ReportActivity reports the current job activity.
167
167
func (r * RestoreJob ) ReportActivity (_ context.Context ) (* activity.Activity , error ) {
168
- return nil , nil
168
+ return & activity. Activity {} , nil
169
169
}
170
170
171
171
// Run starts the job.
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ func (s *LogicalInitial) Reload(cfg map[string]interface{}) (err error) {
116
116
117
117
// ReportActivity reports the current job activity.
118
118
func (s * LogicalInitial ) ReportActivity (_ context.Context ) (* activity.Activity , error ) {
119
- return nil , nil
119
+ return & activity. Activity {} , nil
120
120
}
121
121
122
122
// Run starts the job.
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ func (p *PhysicalInitial) reloadScheduler() {
281
281
282
282
// ReportActivity reports the current job activity.
283
283
func (p * PhysicalInitial ) ReportActivity (_ context.Context ) (* activity.Activity , error ) {
284
- return nil , nil
284
+ return & activity. Activity {} , nil
285
285
}
286
286
287
287
// Run starts the job.
You can’t perform that action at this time.
0 commit comments