Hello, I am using an assets (Dynamically generated...
# ask-community
t
Hello, I am using an assets (Dynamically generated) which output a url for exemple https://myurl.com/path/ and https://myurl.com I am using Localstorage and it breaks the depent assets as it writes results like : /home/personal/dagster_home/storage/asset_name/https:/myurl/path The next asset cannot read this url /home/personal/dagster_home/storage/asset_name/https:/myurl/path How to change the name of the folder how dagster write to the storage ?
c
one thing you could do is instead output a dictionary with the url embedded:
Copy code
return {
    "url": ...
}
assuming that the issue is pathing