Revert 9299697 FIDO_STRICT to default false. Not all FTNs support sending uplinks from a *C address.
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 31s Details
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m36s Details
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s Details

This commit is contained in:
Deon George 2024-04-20 09:37:08 +10:00
parent 7b225d8fc0
commit 20d3776490
2 changed files with 2 additions and 2 deletions

View File

@ -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=

View File

@ -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),
];