Mihai Tomescu

Results 5 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()`?