-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
data download and access control #24
Comments
Hello, Thank you for the report. A missing download link could have multiple causes: export AIDE_CONFIG_PATH=/path/to/config.ini
export AIDE_MODULES=FileServer # add "LabelUI,AIController,AIWorker" if only one machine is being used
./launch_celery.sh b. There may also be a bug in the data preparation implementation. For this I would need to know more about the annotation and prediction types you use, the number of images, number of annotations and/or predictions, as well as the settings made when requesting a download link. Also, a potential error message on the console (F12 in the browser) may help. I will in any case try to reproduce the error and will let you know about success and following bug fixes. As for the access control page: this is fixed now from version 1.9.201009. Details: I don't want to speak out too loudly, but this looks to me like a bug in the HTML- or JavaScript parsing engines of Chrome as well as Webkit. When using this command (file "accessControl.html", line 142): let isAdmin = data['users'][i]['isadmin'] ? '<img src="/static/general/img/success.svg"></img>' : '<img src="/static/general/img/error.svg"></img>'; it works fine (implemented for safety in the latest version of AIDE, ver. 1.9.201009). let isAdmin = data['users'][i]['isadmin'] ? '<img src="/static/general/img/success.svg" />' : '<img src="/static/general/img/error.svg" />'; causes Chromium to garble up the code definition, and Webkit to throw an "unexpected identifier" error. |
Hi @bkellenb
then when retrieving it only seems to use /tmp/
For larger files it also appears to timeout before the file is ready so the file is created but the link doesn't get added. If I remove this line
then it keeps polling until the file is ready and adds to the list box |
Thank you @ctorney! The temp dir is fixed in version 1.9.201015. |
Hi |
Hi
I've been having an issue when trying to download data. After using the workflow designer to create inferences from the model and requesting the data on the "Data Download" page, a date comes up under the "Downloads" section but the corresponding file link doesn't show up with it. We also had some problems with getting the Access Control page to load, it seems to get stuck on the loading screen.
Thank you!
The text was updated successfully, but these errors were encountered: