mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-25 23:45:56 +03:00
[GH-ISSUE #299] http://myhost/instances/ shows 404 #196
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#196
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jay0063 on GitHub (Feb 22, 2020).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/299
I followed Docker Installation , use latest code commit:
4ff77e31c1.login with admin,
choose instances, it worked fine.
but when choose computes, errors show like:
I try to modify the code computes/urls.py +12 in docker
from:
url(r'^/', computes, name='computes'),to
url(r'^$', computes, name='computes'),then restart the docker, it works.
Is it a special case? Is anyone in the same situation?
@catborise commented on GitHub (Feb 24, 2020):
@jay0063 yes your are right it is a bug. it works as normal with adding an extra slash(like http://myhost:80/computes//). but it should be fixed. I added a commit to fix.
thanks