Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed May 8, 2024
1 parent 52159d2 commit a356db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/cryostat/rules/ScheduledArchiveJob.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void execute(JobExecutionContext ctx) throws JobExecutionException {
long ruleId = (long) ctx.getJobDetail().getJobDataMap().get("rule");
Rule rule = Rule.find("id", ruleId).singleResult();
long targetId = (long) ctx.getJobDetail().getJobDataMap().get("target");
Target target = Target.find("id", id).singleResult();
Target target = Target.find("id", targetId).singleResult();
long recordingId = (long) ctx.getJobDetail().getJobDataMap().get("recording");
ActiveRecording recording = ActiveRecording.find("id", recordingId).singleResult();

Expand Down

0 comments on commit a356db0

Please sign in to comment.