Skip to content

Commit 8d1721d

Browse files
new colors
1 parent 912310e commit 8d1721d

File tree

9 files changed

+14
-11
lines changed

9 files changed

+14
-11
lines changed

asset-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"files": {
33
"main.css": "/static/css/main.02152627.css",
4-
"main.js": "/static/js/main.5d8f9857.js",
4+
"main.js": "/static/js/main.97c814c9.js",
55
"static/media/roboto-all-500-normal.woff": "/static/media/roboto-all-500-normal.0ab669b7a0d19b178f57.woff",
66
"static/media/roboto-all-700-normal.woff": "/static/media/roboto-all-700-normal.a457fde362a540fcadff.woff",
77
"static/media/roboto-all-400-normal.woff": "/static/media/roboto-all-400-normal.c5d001fa922fa66a147f.woff",
@@ -36,10 +36,10 @@
3636
"static/media/roboto-greek-ext-700-normal.woff2": "/static/media/roboto-greek-ext-700-normal.bd9854c751441ccc1a70.woff2",
3737
"index.html": "/index.html",
3838
"main.02152627.css.map": "/static/css/main.02152627.css.map",
39-
"main.5d8f9857.js.map": "/static/js/main.5d8f9857.js.map"
39+
"main.97c814c9.js.map": "/static/js/main.97c814c9.js.map"
4040
},
4141
"entrypoints": [
4242
"static/css/main.02152627.css",
43-
"static/js/main.5d8f9857.js"
43+
"static/js/main.97c814c9.js"
4444
]
4545
}

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Pioreactor"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><script defer="defer" src="/static/js/main.5d8f9857.js"></script><link href="/static/css/main.02152627.css" rel="stylesheet"></head><body><div id="root"></div></body></html>
1+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Pioreactor"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><script defer="defer" src="/static/js/main.97c814c9.js"></script><link href="/static/css/main.02152627.css" rel="stylesheet"></head><body><div id="root"></div></body></html>

pioreactorui/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
from paho.mqtt.enums import CallbackAPIVersion
2121
from pioreactor.config import config as pioreactor_config
2222
from pioreactor.config import get_leader_hostname
23+
from pioreactor.plugin_management import get_plugins
2324
from pioreactor.whoami import am_I_leader
2425
from pioreactor.whoami import get_unit_name
2526
from pioreactor.whoami import UNIVERSAL_EXPERIMENT
@@ -116,6 +117,8 @@ def handle_server_error(e):
116117
app.json = MsgspecJsonProvider(app)
117118
app.get_json = app.json.loads
118119

120+
get_plugins()
121+
119122
return app
120123

121124

pioreactorui/api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ def stop_job_on_unit(pioreactor_unit: str, experiment: str, job: str) -> Respons
134134
try:
135135
msg.wait_for_publish(timeout=2.0)
136136
except Exception:
137+
# TODO: make this $broadcastable
137138
tasks.multicast_post_across_cluster(
138139
f"/unit_api/jobs/stop/job_name/{job}", [pioreactor_unit]
139140
)

pioreactorui/unit_api.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ def is_rate_limited(job: str, expire_time_seconds=1.0) -> bool:
256256

257257
@unit_api.route("/jobs/run/job_name/<job>", methods=["PATCH", "POST"])
258258
def run_job(job: str) -> ResponseReturnValue:
259-
# DONT USE YET
260259
"""
261260
Body should look like (all optional)
262261
{

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ python-dotenv==1.0.1
66
paho-mqtt==2.1.0
77
huey==2.5.0
88
msgspec==0.19.0
9-
werkzeug==3.0.3
9+
werkzeug==3.1.3
1010
pioreactor>=24.9.26
Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)