blnkfinance/blnk

Persist hooks to PG instead of Redis

已关闭

#225 创建于 2025年12月30日

 (2 条评论) (0 个反应) (0 位负责人)Go (129 个派生)auto 404
enhancementgood first issue

仓库指标

星标
 (475 个星标)
PR 合并指标
 (平均合并 4天 8小时) (30 天内合并 14 个 PR)

描述

Describe the bug Webhooks are being stored in Redis instead of a persistent database (PG). When Redis is restarted, all hooks created are lost, requiring them to be re-registered.

To Reproduce Steps to reproduce the behavior:

  1. Configure and register webhooks in core(using the pre or post hook endpoint)
  2. Verify webhooks are working correctly
  3. Restart the Redis instance
  4. Attempt to use or view previously configured webhooks
  5. Observe that all webhook configurations have been lost

Expected behavior Webhooks should persist across Redis restarts. They should be stored in a persistent database (PG) so that restarting Redis does not result in data loss.

贡献者指南