Skip to content

Commit

Permalink
chore(smart): add initial http fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Feb 13, 2025
1 parent 58db151 commit e7d0772
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 15 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion spider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider"
version = "2.27.56"
version = "2.27.57"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
8 changes: 5 additions & 3 deletions spider/src/website.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3254,12 +3254,11 @@ impl Website {
&mut context_id,
)
.await;

log::error!("{}", err)
}
}
}
_ => log::info!("Chrome failed to start."),
_ => log::info!("Chrome initialization failed."),
}
}

Expand Down Expand Up @@ -3660,7 +3659,10 @@ impl Website {
.await;
}
}
_ => log::info!("Chrome failed to start."),
_ => {
log::info!("Chrome initialization failed. Switching to HTTP mode as a fallback strategy to maintain service availability.");
self.crawl_concurrent_raw(&client, &handle).await;
},
}
}

Expand Down
2 changes: 1 addition & 1 deletion spider_chrome/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_chrome"
version = "2.27.56"
version = "2.27.57"
rust-version = "1.70"
authors = [
"j-mendez <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion spider_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_cli"
version = "2.27.56"
version = "2.27.57"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_transformations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_transformations"
version = "2.27.56"
version = "2.27.57"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_utils"
version = "2.27.56"
version = "2.27.57"
authors = [
"j-mendez <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_worker"
version = "2.27.56"
version = "2.27.57"
authors = [
"j-mendez <[email protected]>"
]
Expand Down

0 comments on commit e7d0772

Please sign in to comment.