Skip to content

Commit

Permalink
Merge pull request #591 from mozilla/lower_sourcegraph_threshold
Browse files Browse the repository at this point in the history
Lower the requested number of visible lines from sourcegraph to avoid error.
  • Loading branch information
bholley authored Feb 1, 2024
2 parents 40979c0 + 64583e7 commit 79d7359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2057,7 +2057,7 @@ fn cmd_diff(out: &Arc<dyn Out>, cfg: &Config, sub_args: &DiffArgs) -> Result<(),
&& version2.git_rev.is_none()
{
let url = format!(
"https://sourcegraph.com/crates/{package}/-/compare/v{version1}...v{version2}?visible=1000000"
"https://sourcegraph.com/crates/{package}/-/compare/v{version1}...v{version2}?visible=7000"
);
tokio::runtime::Handle::current()
.block_on(prompt_criteria_eulas(
Expand Down

0 comments on commit 79d7359

Please sign in to comment.