From 6c33de940c6c4497545882d6eec50bd6c4696c44 Mon Sep 17 00:00:00 2001 From: saint Date: Mon, 19 Aug 2024 11:18:41 +1000 Subject: [PATCH] v0.48.2 batch size 1000, moving to local instance of MariaDB for slowtwitch db --- gossamer_forums.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gossamer_forums.rb b/gossamer_forums.rb index 0ef244b..d3c662e 100644 --- a/gossamer_forums.rb +++ b/gossamer_forums.rb @@ -52,10 +52,10 @@ class GossamerForumsImporter < ImportScripts::Base # Database configuration for ActiveRecord ActiveRecord::Base.establish_connection( adapter: 'postgresql', -# database: 'slowtwitch', -# username: 'admin', -# password: 'x0YGLA9252iiTFQuqaM0ROX8FmQzZuUu', -# host: '172.99.0.10', + database: 'slowtwitch', + username: 'admin', + password: 'yxnh93Ybbz2Nm8#mp28zCVv', + host: 'slowtwitch.northend.network', pool: 20, # Adjust based on concurrency needs timeout: 5000 )