Procházet zdrojové kódy

demo: check if we are in a virtualenv before overriding PYTHONPATH (#12916)

tags/v1.61.0rc1
Mathieu Velten před 1 rokem
committed by GitHub
rodič
revize
1fd1856afc
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
2 změnil soubory, kde provedl 7 přidání a 5 odebrání
  1. +1
    -0
      changelog.d/12916.misc
  2. +6
    -5
      demo/start.sh

+ 1
- 0
changelog.d/12916.misc Zobrazit soubor

@@ -0,0 +1 @@
Check if we are in a virtual environment before overriding the `PYTHONPATH` environment variable in the demo script.

+ 6
- 5
demo/start.sh Zobrazit soubor

@@ -6,11 +6,12 @@ CWD=$(pwd)

cd "$DIR/.." || exit

PYTHONPATH=$(readlink -f "$(pwd)")
export PYTHONPATH


echo "$PYTHONPATH"
# Do not override PYTHONPATH if we are in a virtual env
if [ "$VIRTUAL_ENV" = "" ]; then
PYTHONPATH=$(readlink -f "$(pwd)")
export PYTHONPATH
echo "$PYTHONPATH"
fi

# Create servers which listen on HTTP at 808x and HTTPS at 848x.
for port in 8080 8081 8082; do


Načítá se…
Zrušit
Uložit