jalapeno-api-gateway / jagw

Microservices for the gateway
MIT License
2 stars 2 forks source link

fix event handling to support cache deletion again #5

Closed severindellsperger closed 9 months ago

severindellsperger commented 9 months ago

During the merge into the mono repo, the two files were merged into one:

However, the logic was not merged identically, leading to the cache service crash mentioned in #3.

The problem was that the cache service called the wrong functions (which were supposed to be called by the subscription service; thus, the dependencies weren't initialized, which caused the panic).

This commit merged the original logic and thus fixed the panic of the cash service.

Please look at the code and merge it if it's okay. After the merge, a new release should be made so the new version can be deployed again.

jklaiber commented 9 months ago

Thanks for fixing