Skip to content

Commit 954894a

Browse files
committed
fix
1 parent 50b4262 commit 954894a

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

rslp/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
"""rslearn_projects: Ai2 projects built on top of rslearn."""
2-
3-
import rslp.utils.fs # noqa: F401 (imported but unused)

rslp/launch_beaker.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,17 @@ def launch_job(
5757
value="prior-satlas", # nosec
5858
),
5959
EnvVar(
60-
name="S3_ACCESS_KEY_ID", # nosec
60+
name="WEKA_ACCESS_KEY_ID", # nosec
6161
secret="RSLEARN_WEKA_KEY", # nosec
6262
),
6363
EnvVar(
64-
name="S3_SECRET_ACCESS_KEY", # nosec
64+
name="WEKA_SECRET_ACCESS_KEY", # nosec
6565
secret="RSLEARN_WEKA_SECRET", # nosec
6666
),
67+
EnvVar(
68+
name="WEKA_ENDPOINT_URL", # nosec
69+
value="https://weka-aus.beaker.org:9000", # nosec
70+
),
6771
EnvVar(
6872
name="RSLP_PROJECT", # nosec
6973
value=project_id,

rslp/lightning_cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from rslearn.main import RslearnLightningCLI
1111
from upath import UPath
1212

13+
import rslp.utils.fs # noqa: F401 (imported but unused)
1314
from rslp import launcher_lib
1415

1516
CHECKPOINT_DIR = "gs://{rslp_bucket}/projects/{project_id}/{experiment_id}/checkpoints/"

0 commit comments

Comments
 (0)