ciaranby

Results 3 comments of ciaranby

I see the erros hown above error when I run the command as follows: `wandb artifact cache cleanup 1GB`

The issue is because [this line of code]( https://github.com/wandb/wandb/blob/main/wandb/cli/cli.py#L2208) is wrong: ``` reclaimed_bytes = cache.cleanup(target_size, remove_temp) ``` it should be: ``` reclaimed_bytes = cache.cleanup(target_size, remove_temp=remove_temp) ``` or it could be:...

Can someone advise on the unit test fails - it's unclear if they are related to my change?