Skip to content

Commit

Permalink
[RSDK-5663] increase internal state and pointcloud timeouts (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnN193 authored Feb 23, 2024
1 parent 9c2054a commit 307b496
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viam_cartographer.go
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ func (cartoSvc *CartographerService) PointCloudMap(ctx context.Context) (func()
return toChunkedFunc(*cartoSvc.postprocessedPointCloud), nil
}

pc, err := cartoSvc.cartofacade.PointCloudMap(ctx, cartoSvc.cartoFacadeTimeout)
pc, err := cartoSvc.cartofacade.PointCloudMap(ctx, cartoSvc.cartoFacadeInternalTimeout)
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -611,7 +611,7 @@ func (cartoSvc *CartographerService) InternalState(ctx context.Context) (func()
return nil, err
}

is, err := cartoSvc.cartofacade.InternalState(ctx, cartoSvc.cartoFacadeTimeout)
is, err := cartoSvc.cartofacade.InternalState(ctx, cartoSvc.cartoFacadeInternalTimeout)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 307b496

Please sign in to comment.