Clayton Yochum
Clayton Yochum
@JoseBartolomei, I see you've updated `rdrop2`; are you still using the same token from v0.7? You'll need to generate a new one with `drop_auth`, as the new Dropbox API v2...
How are you loading the token in your shiny server? We recommend saving the token to disk outside the app ```r token
@JoseBartolomei sorry for the late reply. Yes, I agree we shouldn't just pass the error through. We're working on refactoring the "guts" of this package, so it might be a...
@JoseBartolomei nice workaround; I think I like that better! Despite my last comment I'm back to thinking that `drop_download` throwing an error _is_ the right behavior. Something I didn't notice...
My hunch is this might have to do whether the leading slash is present or not; I don't think we're quite as consistent about path sanitization as we intend to...
Thanks for the prompt response, and the fastapi link! I used that to dig a bit deeper. I see there it does call `model_dump` underneath. I'll spare you the code,...
Used `logging` to print a stack trace and learned some things! First, my code: code ```python import logging from fastapi import FastAPI from pydantic import BaseModel, model_validator STACK_INFO = False...
Can confirm this exists in the latest image as well: ```shell ❯ docker inspect nvcr.io/nvidia/tritonserver:24.03-py3 | jq '.[0].RootFS.Layers' | sort | uniq -c 1 "sha256:0c5f76392da432595f52b598d72f9f0c7bec12cc99eeea430203fc3b6e0a551c", 1 "sha256:2757a78913f29b2b87649e92ee6dd73460f496af008c5c8d772c2cbaf128450f", 1 "sha256:2c8fb4462dd1c3b0257685c36d8e0235bd0fa6cdc86e2934cce01ad67b560599", 1...
Digging a little further here, this layer maps to file `54ef38418033d800a45a536f7c4f8d037549aa2c005f589e390961c0c5947149/layer.tar` when saving and extracting this image. Extracting that file shows it's empty, so we must have 4 Dockerfile commands...
Alright I pulled out `dive` and found the four offenders: ``` RUN |3 CUDA_VERSION=12.4.0.041 CUDA_DRIVER_VERSION=550.54.14 JETPACK_HOST_MOUNTS= /bin/sh -c if [ -n "${JETPACK_HOST_MOUNTS}" ]; then echo "/usr/lib/aarch64-linux-gnu/tegra" > /etc/ld.so.conf.d/nvidia-tegra.conf && echo...