Mihai Tomescu

Results 10 comments of Mihai Tomescu

That is because Suramar and Medivh are connected realms. The following calls will both return a link to the same auction house data: ``` $ curl http://eu.battle.net/api/wow/auction/data/medivh {"files":[{"url":"http://eu.battle.net/auction-data/57304a565824f2d778f9ad106430c98c/auctions.json","lastModified":1412947949000}]} $ curl...

Perhaps we can patch the [create()](https://github.com/typeorm/typeorm/blob/b177e230a6fcb11f1eb71d4d431d0297436b7f6f/src/entity-manager/EntityManagerFactory.ts#L18) method in `EntityManagerFactory`. Then, for each manager instance created, override the manager's [getRepository()](https://github.com/typeorm/typeorm/blob/b177e230a6fcb11f1eb71d4d431d0297436b7f6f/src/entity-manager/LiteralEntityManager.ts#L621) method and add getter/setter to the repository's [manager](https://github.com/typeorm/typeorm/blob/b177e230a6fcb11f1eb71d4d431d0297436b7f6f/src/repository/LiteralRepository.ts#L28) property to return...

I ran into this issue when calling `connection.publish` several times in the same tick of the event loop. Solved it by using `process.setImmediate`.

Instead of `q.shift()`, i just did `ack.acknowledge()` which solved the problem. What exactly is the point of `.shift()`?

This is the log for a session that I just created and tried to connect to the database: ``` !SESSION 2025-08-14 07:46:08.376 ----------------------------------------------- eclipse.buildId=unknown java.version=21.0.5 java.vendor=Eclipse Adoptium BootLoader constants: OS=win32,...

Also the database server is running on docker using the `pgvector/pgvector:pg17` image (https://github.com/pgvector/pgvector?tab=readme-ov-file#docker). It seems like DBeaver can connect to a database running the standard `postgres:17` image.

I've also tried using the `postgres:17` image and installing `pgvector` manually but it still can't connect. So I think it's somehow related to pgvector.

I'm using docker compose with the `pgvector/pgvector:pg17` image (https://hub.docker.com/r/pgvector/pgvector). 1. I can confirm the extension is loaded using `psql.exe -h localhost -U postgres -d app -c "SELECT extname FROM pg_extension...