Skip to content

Commit

Permalink
Idempotency for admin-panels
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnicegyu11 committed Dec 2, 2024
1 parent 541df1c commit c92ac11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ ignore-paths=^.*\\generated_models\\.*$|^.*/generated_models/.*$
# Files or directories matching the regex patterns are skipped. The regex
# matches against base names, not paths. The default value ignores Emacs file
# locks
ignore-patterns=venv,.venv
ignore-patterns=venv,.venv,jupyter_server_config.py

# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
Expand Down
3 changes: 3 additions & 0 deletions scripts/deployments/deploy_everything_locally.bash
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,9 @@ if [ "$start_opsstack" -eq 0 ]; then
# -------------------------------- ADMIN-PANELS -------------------------------

log_info "starting admin-panels..."
# Check if the stack 'admin-panels' exists and delete it if it does
# shellcheck disable=2015
docker stack ls | grep -q admin-panels && docker stack rm admin-panels >/dev/null 2>&1 || true
# Pushd because a call with call_make trigger a strange behavior
pushd "${repo_basedir}"/services/admin-panels;
call_make "." up-"$stack_target";
Expand Down

0 comments on commit c92ac11

Please sign in to comment.