From e21597632e2e7349bb40761915bf6c684b2dd372 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Mon, 11 Sep 2023 15:57:25 +1000 Subject: [PATCH] Revert "buildbot: unset SQLALCHEMY_SILENCE_UBER_WARNING" This reverts commit d5999dd34144275cd20e0cd1d05bcb5fce04a9a1. --- .../tools/continuous-integration/buildbot/master.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/tools/continuous-integration/buildbot/master.nix b/pkgs/development/tools/continuous-integration/buildbot/master.nix index d4c08cafbf26..a025de299ccd 100644 --- a/pkgs/development/tools/continuous-integration/buildbot/master.nix +++ b/pkgs/development/tools/continuous-integration/buildbot/master.nix @@ -120,6 +120,9 @@ let substituteInPlace buildbot/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)" ''; + # Silence the depreciation warning from SqlAlchemy + SQLALCHEMY_SILENCE_UBER_WARNING = 1; + # TimeoutErrors on slow machines -> aarch64 doCheck = !stdenv.isAarch64;