Skip to content

Commit 3bf750f

Browse files
committed
fix: http -> https for aind-metadata-service
1 parent 3564147 commit 3bf750f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aind_metadata_viz/fiber_viewer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
pn.extension("vega")
1919

2020
# Metadata service and cache configuration
21-
METADATA_SERVICE_URL = "http://aind-metadata-service"
21+
METADATA_SERVICE_URL = "https://aind-metadata-service"
2222
CACHE_DIR = Path(".cache/procedures")
2323
CACHE_DIR.mkdir(parents=True, exist_ok=True)
2424

@@ -714,7 +714,7 @@ class MetadataFetcher(pn.reactive.ReactiveHTML):
714714
data.error = "";
715715
data.data = {};
716716
717-
const url = `http://aind-metadata-service/api/v2/procedures/${subjectId}`;
717+
const url = `{METADATA_SERVICE_URL}/api/v2/procedures/${subjectId}`;
718718
719719
fetch(url)
720720
.then(response => {

0 commit comments

Comments
 (0)