-
Notifications
You must be signed in to change notification settings - Fork 46
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
How to connect a custom chain #3
Comments
Have you tried replacing the |
Isn't working, is still running the docker image. harvester_1 | Traceback (most recent call last):
harvester_1 | File "app/harvester.py", line 394, in <module>
harvester_1 | harvester.run(args.action)
harvester_1 | File "app/harvester.py", line 292, in run
harvester_1 | self.init()
harvester_1 | File "app/harvester.py", line 237, in init
harvester_1 | raise ValueError(
harvester_1 | ValueError: Connected chain 'Polka Systems - Chaos' does not match chain 'Development' in database Can you help me? |
Then probably you changed the endpoint for an existing database used on another chain, you will need to flush the current database or create a new one for this chain.. |
Thank you @arjanz, I'm not an experienced developer, sorry if this questions sounds dumb but,
I greatly appreciate your help. |
@didiermis this is about right, you don't need to setup your own DB (it's included in the docker-compose file). Just make sure you clear any existing Docker volumes, because these will be reused if already created. See for example https://docs.tibco.com/pub/mash-local/4.3.0/doc/html/docker/GUID-BD850566-5B79-4915-987E-430FC38DAAE4.html |
Morning,
After this, I tried the page u mentioned above: https://docs.tibco.com/pub/mash-local/4.3.0/doc/html/docker/GUID-BD850566-5B79-4915-987E-430FC38DAAE4.html
My restart script looks like this: echo "Stop the container(s) using the following command:"
docker-compose down --volumes
echo "Delete all containers using the following command:"
docker rm -f $(docker ps -a -q)
echo "Delete all volumes using the following command:"
docker volume rm $(docker volume ls -q)
echo "Restart the containers using the following command:"
docker-compose up -d I also tried deleting all Docker images and containers (it takes a long time to build the project) with no success:
What am I missing here? Thanks in advance. |
Are you still having problems with this? |
Hey,
I was wondering how can I setup a connection to a custom chain, using the following wss:
wss://n1.polka.systems
The text was updated successfully, but these errors were encountered: