#13035 fixed bug with multiple nodes

This commit is contained in:
Daniel Cebrian 2024-04-03 17:39:23 +02:00
parent f75338e0c7
commit 8109b41751

View File

@ -196,17 +196,16 @@ final class JWTRepository
{ {
global $config; global $config;
if (function_exists('metaconsole_get_servers') === true) { if (function_exists('metaconsole_get_servers') === true) {
$config['JWT_signature'] = -1;
$servers = metaconsole_get_servers(); $servers = metaconsole_get_servers();
foreach ($servers as $server) { foreach ($servers as $server) {
$config['JWT_signature'] = -1;
if (metaconsole_connect($server) == NOERR) { if (metaconsole_connect($server) == NOERR) {
config_update_value('JWT_signature', $signature, true); config_update_value('JWT_signature', $signature, true);
} }
metaconsole_restore_db(); metaconsole_restore_db();
$config['JWT_signature'] = $signature;
} }
$config['JWT_signature'] = $signature;
} }
} }