We recently had to reindex our package store and noticed only tar.bz2 packages were showing up after reindexing.
From the code it seems only .tar.bz2 files are considered during reindex:
|
pkg_files = [f for f in all_files if f.endswith(".tar.bz2")] |
Can we also enable it for .conda packages?
We recently had to reindex our package store and noticed only
tar.bz2packages were showing up after reindexing.From the code it seems only
.tar.bz2files are considered during reindex:quetz/quetz/tasks/reindexing.py
Line 140 in 56ab2cf
Can we also enable it for
.condapackages?