Skip to content

Commit 060fbb3

Browse files
committed
addressing AI review comments
1 parent a0ae713 commit 060fbb3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

server/internal/orchestrator/swarm/service_instance_spec.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ func (s *ServiceInstanceSpecResource) Dependencies() []resource.Identifier {
7676
case "postgrest":
7777
deps = append(deps, PostgRESTConfigResourceIdentifier(s.ServiceInstanceID))
7878
case "rag":
79-
deps = append(deps, RAGConfigResourceIdentifier(s.ServiceInstanceID))
79+
deps = append(deps,
80+
RAGConfigResourceIdentifier(s.ServiceInstanceID),
81+
RAGServiceKeysResourceIdentifier(s.ServiceInstanceID),
82+
)
8083
default:
8184
log.Warn().Str("service_type", s.ServiceSpec.ServiceType).Msg("unknown service type in dependencies")
8285
}

0 commit comments

Comments
 (0)