fix(agent-service): remove duplicate remove() override conflicting with TenantAwareRepository base
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
be263cdb24
commit
ad46e45181
|
|
@ -37,10 +37,6 @@ export class AgentInstanceRepository extends TenantAwareRepository<AgentInstance
|
|||
return this.withRepository((repo) => repo.save(instance));
|
||||
}
|
||||
|
||||
async remove(instance: AgentInstance): Promise<void> {
|
||||
await this.withRepository((repo) => repo.remove(instance));
|
||||
}
|
||||
|
||||
// Get all host ports in use on a specific server (across all tenants via public query)
|
||||
async getUsedPortsOnServer(dataSource: DataSource, serverHost: string): Promise<number[]> {
|
||||
const rows = await dataSource.query(
|
||||
|
|
|
|||
Loading…
Reference in New Issue