🐛 Fix nexus allocate did not alloc db in cache

This commit is contained in:
LittleSheep 2025-03-29 13:25:46 +08:00
parent 66df1392c4
commit e7d7cd1000

View File

@ -33,7 +33,9 @@ func (v *Conn) AllocResource(t AllocatableResourceType) any {
return resp.Endpoints
case AllocatableResourceCache:
conn := v.GetNexusGrpcConn()
resp, err := proto.NewAllocatorServiceClient(conn).AllocCache(context.Background(), &proto.AllocCacheRequest{})
resp, err := proto.NewAllocatorServiceClient(conn).AllocCache(context.Background(), &proto.AllocCacheRequest{
Db: 0,
})
if err != nil || !resp.IsSuccess {
return nil
}