This commit is contained in:
Michael Pilosov 2024-05-31 14:30:09 -06:00
parent 921c1980ad
commit fe75f9eb90
5 changed files with 7 additions and 8 deletions

View File

@ -174,8 +174,8 @@
formattedPath += '-'; formattedPath += '-';
} }
// Append '.mp4' to the formatted path // Append '.mp4' to the formatted path + cache bust
let videoPath = `${formattedPath}latest.mp4&t={Date.now()}`; let videoPath = `${formattedPath}latest.mp4` + "?t=" + Date.now();
let videoPlayer = document.getElementById('video-player'); let videoPlayer = document.getElementById('video-player');
let videoSource = document.getElementById('video-source'); let videoSource = document.getElementById('video-source');

View File

@ -1,5 +1,5 @@
run: build run: build
docker run --rm -ti --name noaa -e HOST_NAME=localhost -p 9021:9021 -p 4200:4200 noaa docker run --rm -ti --name noaa -e LIGHTNING_CLOUDSPACE_HOST=noaa.clfx.cc -p 9021:9021 -p 4200:4200 noaa
build: build:
docker build -t noaa . docker build -t noaa .

View File

@ -10,7 +10,6 @@ import numpy as np
from moviepy.editor import ImageSequenceClip from moviepy.editor import ImageSequenceClip
from PIL import Image from PIL import Image
from prefect import flow, task from prefect import flow, task
from prefect.task_runners import ConcurrentTaskRunner
from prefect.tasks import task_input_hash from prefect.tasks import task_input_hash
BASE_URL = "https://services.swpc.noaa.gov/images/animations/geospace/" BASE_URL = "https://services.swpc.noaa.gov/images/animations/geospace/"
@ -220,7 +219,6 @@ def deploy_name():
retries=0, retries=0,
retry_delay_seconds=1, retry_delay_seconds=1,
log_prints=True, log_prints=True,
task_runner=ConcurrentTaskRunner(),
flow_run_name=None, flow_run_name=None,
timeout_seconds=90, timeout_seconds=90,
) )

View File

@ -10,5 +10,5 @@ PREFECT_API_SERVICES_SCHEDULER_INSERT_BATCH_SIZE = 500
PREFECT_API_SERVICES_SCHEDULER_LOOP_SECONDS = 60 PREFECT_API_SERVICES_SCHEDULER_LOOP_SECONDS = 60
PREFECT_API_SERVICES_SCHEDULER_MIN_RUNS = 3 PREFECT_API_SERVICES_SCHEDULER_MIN_RUNS = 3
PREFECT_API_SERVICES_SCHEDULER_MAX_RUNS = 100 PREFECT_API_SERVICES_SCHEDULER_MAX_RUNS = 100
PREFECT_API_SERVICES_SCHEDULER_MIN_SCHEDULED_TIME = '0:30:00' PREFECT_API_SERVICES_SCHEDULER_MIN_SCHEDULED_TIME = '00:30:00'
PREFECT_API_SERVICES_SCHEDULER_MAX_SCHEDULED_TIME = '0 days, 8:00:00' PREFECT_API_SERVICES_SCHEDULER_MAX_SCHEDULED_TIME = '08:00:00'

View File

@ -1,4 +1,5 @@
prefect==2.17.1 #prefect==2.17.1
prefect==3.0.0rc1
Flask==3.0.3 Flask==3.0.3
gunicorn==22.0.0 gunicorn==22.0.0
gevent==24.2.1 gevent==24.2.1