I'm trying to connect my Postgres instance to use Prisma Pulse as an alternative to BullMQ. After setting up the recommended configuration (taken from the Railway template), I'm getting this error: "ErrorInternal - Something went wrong, please try again," with no additional context.
Here’s the config I applied:
ALTER SYSTEM SET wal_level = logical;ALTER SYSTEM SET max_replication_slots = 20;ALTER SYSTEM SET max_wal_senders = 20;ALTER SYSTEM SET wal_keep_size = 2048;SELECT pg_reload_conf();
ALTER SYSTEM SET wal_level = logical;ALTER SYSTEM SET max_replication_slots = 20;ALTER SYSTEM SET max_wal_senders = 20;ALTER SYSTEM SET wal_keep_size = 2048;SELECT pg_reload_conf();
Anyone know why this is happening or how I can troubleshoot it? Any help would be great!