Skip to content

Commit f9dd406

Browse files
authored
fix: fetch symbols get (#168)
1 parent 77cc8be commit f9dd406

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-agent"
3-
version = "3.0.2"
3+
version = "3.0.3"
44
edition = "2024"
55

66
[[bin]]

src/agent/services/lazer_exporter.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ struct SymbolResponse {
240240

241241
async fn fetch_symbols(history_url: &Url) -> Result<Vec<SymbolResponse>> {
242242
let mut url = history_url.clone();
243-
url.set_scheme("http").map_err(|_| anyhow!("invalid url"))?;
244243
url.set_path("/history/v1/symbols");
245244
let client = Client::new();
246245
let response = client.get(url).send().await?.error_for_status()?;

0 commit comments

Comments
 (0)