Skip to content

Commit d5e723c

Browse files
authored
fix url (#19)
Fix url for the new status dashboard release The small change for the SD release. Reviewed-by: Vladimir Hasko <vladimirhasko@gmail.com>
1 parent e04064a commit d5e723c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/reporter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ async fn metric_watcher(config: &Config) {
128128
.status_dashboard
129129
.as_ref()
130130
.expect("Status dashboard section is missing");
131-
let status_report_url = format!("{}/api/v1/component_status", sdb_config.url.clone(),);
131+
let status_report_url = format!("{}/v1/component_status", sdb_config.url.clone(),);
132132
let mut headers = HeaderMap::new();
133133
if let Some(ref secret) = sdb_config.secret {
134134
let key: Hmac<Sha256> = Hmac::new_from_slice(secret.as_bytes()).unwrap();

0 commit comments

Comments
 (0)