Skip to content

Commit

Permalink
fixup! SDKTECHNO-271: fix client errors, add debounce to fix input UX…
Browse files Browse the repository at this point in the history
… issue
  • Loading branch information
EmilienLeroux committed Oct 22, 2024
1 parent 0e80ff9 commit d851a79
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM python:3.9-slim

USER root

ENV APP_BACKUP_VERSION='2024.04-0.1-1.192.1_SDKTECHNO-271'
ENV APP_RESTORE_VERSION='2024.04-0.1-1.192.1_SDKTECHNO-271'
ENV APP_BACKUP_VERSION='2024.04-0.1-1.192.0_SDKTECHNO-271'
ENV APP_RESTORE_VERSION='2024.04-0.1-1.192.0_SDKTECHNO-271'

ENV SAAGIE_APP_BACKUP_TMP_APP_PREFIX='saagie-sub-app-backup'
ENV SAAGIE_APP_RESTORE_TMP_APP_PREFIX='saagie-sub-app-restore'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def script_backup():
backup_app_project_id = os.environ["SAAGIE_APP_BACKUP_CURRENT_APP_PROJECT_ID"]
finished_status = ["STOPPED", "FAILED", "UNKNOWN"]

APP_BACKUP_VERSION = os.environ.get("APP_BACKUP_VERSION", '2024.04-0.1-1.192.1_SDKTECHNO-271')
APP_BACKUP_VERSION = os.environ.get("APP_BACKUP_VERSION", '2024.04-0.1-1.192.0_SDKTECHNO-271')

app_backup_baseName = 'saagie/saagie-app-storages-sub-app-backup'
app_backup_name = f'{app_backup_baseName}:{APP_BACKUP_VERSION}'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def script_restore():
backup_app_project_id = os.environ["SAAGIE_APP_BACKUP_CURRENT_APP_PROJECT_ID"]
finished_status = ["STOPPED", "FAILED", "UNKNOWN"]

APP_RESTORE_VERSION = os.environ.get("APP_RESTORE_VERSION", '2024.04-0.1-1.192.1_SDKTECHNO-271')
APP_RESTORE_VERSION = os.environ.get("APP_RESTORE_VERSION", '2024.04-0.1-1.192.0_SDKTECHNO-271')

app_restore_baseName = 'saagie/saagie-app-storages-sub-app-restore'
app_restore_name = f'{app_restore_baseName}:{APP_RESTORE_VERSION}'
Expand Down

0 comments on commit d851a79

Please sign in to comment.