Skip to content

Commit

Permalink
misc: 25.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Feb 19, 2025
1 parent a43d742 commit 31c5092
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/manager/graphql-reference/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1784,7 +1784,7 @@ type Mutations {
"""
purge_user(email: String!, props: PurgeUserInput!): PurgeUser

"""Added in 25.2.0."""
"""Added in 25.3.1."""
rescan_gpu_alloc_maps(

Check notice on line 1788 in docs/manager/graphql-reference/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Field 'rescan_gpu_alloc_maps' was added to object type 'Mutations'

Field 'rescan_gpu_alloc_maps' was added to object type 'Mutations'
"""Agent ID to rescan GPU alloc map, Pass None to rescan all agents"""
agent_id: String
Expand Down Expand Up @@ -2202,7 +2202,7 @@ input PurgeUserInput {
purge_shared_vfolders: Boolean
}

"""Added in 25.2.0."""
"""Added in 25.3.1."""
type RescanGPUAllocMaps {

Check notice on line 2206 in docs/manager/graphql-reference/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Type 'RescanGPUAllocMaps' was added

Type 'RescanGPUAllocMaps' was added
ok: Boolean
msg: String
Expand Down
2 changes: 1 addition & 1 deletion src/ai/backend/manager/models/gql.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ class Mutations(graphene.ObjectType):
modify_user = ModifyUser.Field()
delete_user = DeleteUser.Field()
purge_user = PurgeUser.Field()
rescan_gpu_alloc_maps = RescanGPUAllocMaps.Field(description="Added in 25.2.0.")
rescan_gpu_alloc_maps = RescanGPUAllocMaps.Field(description="Added in 25.3.1.")

# admin only
create_keypair = CreateKeyPair.Field()
Expand Down
2 changes: 1 addition & 1 deletion src/ai/backend/manager/models/gql_models/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ class RescanGPUAllocMaps(graphene.Mutation):
allowed_roles = (UserRole.SUPERADMIN,)

class Meta:
description = "Added in 25.2.0."
description = "Added in 25.3.1."

class Arguments:
agent_id = graphene.String(
Expand Down

0 comments on commit 31c5092

Please sign in to comment.