From faae202e8b9045728b56d8cba7e189d20fddbbbe Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 16 Feb 2026 05:09:47 -0800 Subject: [PATCH] =?UTF-8?q?chore(attributes-most-specific):=20=F0=9F=94=A7?= =?UTF-8?q?=20Update=20backend=20attribute=20module=20dependencies=20and?= =?UTF-8?q?=20structure=20for=20API=20integration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/attributes/backend-api/src/app.module.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/features/attributes/backend-api/src/app.module.ts b/features/attributes/backend-api/src/app.module.ts index 98c5f00d8..03e006e81 100755 --- a/features/attributes/backend-api/src/app.module.ts +++ b/features/attributes/backend-api/src/app.module.ts @@ -52,13 +52,15 @@ import { FilterSemanticOverride } from './entities/filter-semantic-override.enti return { type: 'postgres', host: 'localhost', - port: 25432, + port: parseInt(config.get('DATABASE_POSTGRES_PORT', '25432'), 10), username: config.get('DATABASE_POSTGRES_USER', 'lilith'), password: config.get('DATABASE_POSTGRES_PASSWORD', 'lilith'), database: config.get('DATABASE_POSTGRES_NAME', 'lilith'), autoLoadEntities: true, synchronize: config.get('NODE_ENV') !== 'production', logging: config.get('NODE_ENV') !== 'production', + retryAttempts: 10, + retryDelay: 2000, } }, }),