Skip to content

Commit

Permalink
fix: Add milestone comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Dec 24, 2024
1 parent 9bd1533 commit fa5ce5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ai/backend/manager/api/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2115,6 +2115,7 @@ input PurgeUserInput {
purge_shared_vfolders: Boolean
}

"""Added in 24.12.0."""
type ScanGPUAllocMaps {

Check notice on line 2119 in src/ai/backend/manager/api/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'ScanGPUAllocMaps' was added

Type 'ScanGPUAllocMaps' was added
ok: Boolean
msg: String
Expand Down
3 changes: 3 additions & 0 deletions src/ai/backend/manager/models/gql_models/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -885,6 +885,9 @@ async def mutate(
class ScanGPUAllocMaps(graphene.Mutation):
allowed_roles = (UserRole.SUPERADMIN,)

class Meta:
description = "Added in 24.12.0."

class Arguments:
agent_id = graphene.String()

Expand Down

0 comments on commit fa5ce5b

Please sign in to comment.