Skip to content

Commit

Permalink
fetchpost: use correct key when deleting from redis
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad committed Nov 7, 2022
1 parent b106ac0 commit 4c85a39
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/cmd/fetchpost.rs
Original file line number Diff line number Diff line change
Expand Up @@ -627,9 +627,10 @@ pub fn run(argv: &[&str]) -> CliResult<()> {
};
if !args.flag_cache_error && final_response.status_code != 200 {
let key = format!(
"{}{:?}{}{}{}",
"{}{:?}{:?}{}{}{}",
url,
jql_selector,
form_body_jsonmap,
args.flag_jql,
args.flag_store_error,
args.flag_pretty,
include_existing_columns
Expand Down

0 comments on commit 4c85a39

Please sign in to comment.