From 20d3776490c749025c6eb56dbf703996df8b9521 Mon Sep 17 00:00:00 2001 From: Deon George Date: Sat, 20 Apr 2024 09:37:08 +1000 Subject: [PATCH] Revert 9299697 FIDO_STRICT to default false. Not all FTNs support sending uplinks from a *C address. --- .env.example | 2 +- config/fido.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index a102f20..de03d6f 100644 --- a/.env.example +++ b/.env.example @@ -48,7 +48,7 @@ MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" FIDO_DIR=fido FIDO_PACKET_KEEP= -FIDO_STRICT=TRUE +FIDO_STRICT=false FILESYSTEM_DISK=s3 AWS_ACCESS_KEY_ID= diff --git a/config/fido.php b/config/fido.php index ac03046..4afc533 100644 --- a/config/fido.php +++ b/config/fido.php @@ -36,5 +36,5 @@ return [ // Strict mode enforces what address we present to uplinks, when we carry more than 1 address with different roles // When true, we'll only present a role that is higher than the node we are talking to - 'strict' => env('FIDO_STRICT',TRUE), + 'strict' => env('FIDO_STRICT',FALSE), ]; \ No newline at end of file