We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3564147 commit 3bf750fCopy full SHA for 3bf750f
src/aind_metadata_viz/fiber_viewer.py
@@ -18,7 +18,7 @@
18
pn.extension("vega")
19
20
# Metadata service and cache configuration
21
-METADATA_SERVICE_URL = "http://aind-metadata-service"
+METADATA_SERVICE_URL = "https://aind-metadata-service"
22
CACHE_DIR = Path(".cache/procedures")
23
CACHE_DIR.mkdir(parents=True, exist_ok=True)
24
@@ -714,7 +714,7 @@ class MetadataFetcher(pn.reactive.ReactiveHTML):
714
data.error = "";
715
data.data = {};
716
717
- const url = `http://aind-metadata-service/api/v2/procedures/${subjectId}`;
+ const url = `{METADATA_SERVICE_URL}/api/v2/procedures/${subjectId}`;
718
719
fetch(url)
720
.then(response => {
0 commit comments