Loosetooth
Loosetooth
Yes, you're correct about the two separate issues. I rather thought of it as "synchronization problems", but splitting it up like this probably helps to recognize the problems faster. Thanks!
I tried your ideas in the "tabcatFix" class in the testrepository. (Both timeout and pinning.) Didn't work, fetching like 8 db's from a local node only syncs the first few,...
> does it always hang on the same db? What if you load only that db on its own? @phillmac Yes, when loading the same series of db's, it usually...
> so just to be clear; the issue is with browser nodes using an ipfs http api that is talking to an instance of go-ipfs. is this correct? Yes, the...
@phillmac Just tested if the go-ipfs node was responsive with `ipfs cat ` while it was stuck on loading a db, and it responded just fine. I also just noticed...
First of all, thanks again for the help! It's very much appreciated. > Maybe a simple work around for the purpose of testing would be to introduce an artificial 30...
Hi @Mauraza, Correct, running the following docker-compose.yml: ```yml version: '3.9' services: mongo: image: bitnami/mongodb:latest container_name: mongo ports: - 27030:27017 volumes: - mongodata:/bitnami/mongodb environment: - MONGODB_ROOT_USER=root - MONGODB_ROOT_PASSWORD=root - MONGODB_REPLICA_SET_MODE=primary -...
P.S. The `MONGODB_ADVERTISED_HOSTNAME` needs to be the same as the service name as defined in the docker compose file. In this case the service name is `mongo`.
I was going to try the `rehype-typst` package, but I can't install it. https://github.com/Myriad-Dreamin/typst.ts/blob/main/projects/rehype-typst/README.md?plain=1#L37 Is it published on npm? I was also trying to install it directly from the git...
Thanks for the hint! It indeed seems to be the case that some paper.js variables are not accessible somehow. (They're in another scope?) Feel free to share your "hacky" solution...