-
Notifications
You must be signed in to change notification settings - Fork 3
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
VNC not working and flow post processor exists with error #5
Comments
Problem is currently if you update your post-processor version, if you already have the database created, you will have to remake-it or run ALTER TABLE script_flow
ADD sha256 BYTEA to add the extra field We should consider either pinning the post-processor version via the crawler's CLI or have some kind of migration logic. |
I had setup an upgrade mechanism through SQLAlchemy alembic system, however, I forgot to add an upgrade path for this change. #6 should fix that and running
Hmm, I cannot reproduce this issue, can you send a screenshot and/or docker logs for the docker container?
Currently, rebuilding using the setup command force pulls the latest postprocessors, maybe we should instead pin it to a specific version which can be updated based on change? |
Here is my log file it may contain some extra info but I don't see why noVnc fails for me. |
Only warning that feels relevant. I wonder if this is a client-side issue with NoVNC. Do you see anything in your browser console when you load the page in your browser? What browser are you using. |
Have these containers been running for a while or are you re-running |
I run |
Hey Sohom,
I opened up the crawler after some time and noticed some new commits notably the addition of the sha256 hashes to the script_flow table that seems to be a breaking change when attempting to use the flow post processor for vv8. Since the sha256 table does not exist in the script_flow table on startup. Perhaps adjustment of the schema would do some good. I fixed it manually for my use case by recreating the table with the sha256 column included.
Additionally the noVNC UI located on ports 5901/6901 just shows a black screen and does not show the browser open up. Based on what I recall this worked fine in the past (Did not investigate this issue for now). Just wanted to let you know about issues that I have seen since I am using the crawler again. Hope this helps.
Let me know if you have any questions about the broken features.
Best,
Aswad
The text was updated successfully, but these errors were encountered: