(ctx context.Context, instance *store.InstanceMessage)
| 253 | } |
| 254 | |
| 255 | func (s *InstanceService) convertToV1Instance(ctx context.Context, instance *store.InstanceMessage) *v1pb.Instance { |
| 256 | return convertToV1Instance(instance, s.licenseService.IsInstanceEffectivelyActivated(ctx, common.GetWorkspaceIDFromContext(ctx), instance)) |
| 257 | } |
| 258 | |
| 259 | func (s *InstanceService) checkInstanceDataSources(ctx context.Context, instance *store.InstanceMessage, dataSources []*storepb.DataSource) error { |
| 260 | for _, ds := range dataSources { |
no test coverage detected