commit c4133fce267d2ae40daf986233ac8dd4a7b9d41a parent 765bd9f8c81db763729aabb484c9a82e1ac2babd Author: Antoine A <> Date: Wed, 30 Jul 2025 14:58:57 +0200 commmon: reverse token config change Diffstat:
| M | common/taler-api/src/config.rs | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/taler-api/src/config.rs b/common/taler-api/src/config.rs @@ -60,7 +60,7 @@ impl ApiCfg { )) }, "bearer" => { - Ok(AuthMethod::Bearer(sect.str("TOKEN").require()?)) + Ok(AuthMethod::Bearer(sect.str("AUTH_TOKEN").require()?)) } ) .require()?;