Skip to content

Commit

Permalink
chore: Small refactoring of unneeded getter call
Browse files Browse the repository at this point in the history
  • Loading branch information
binarycoded committed Aug 28, 2024
1 parent 533c4c4 commit 0ef9416
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public ResponseEntity<InspectitConfiguration> getAgentConfiguration() {
return ResponseEntity.noContent().build();
}

return ResponseEntity.ok().body(configurationService.getConfiguration());
return ResponseEntity.ok().body(configuration);
}

@PutMapping
Expand Down

0 comments on commit 0ef9416

Please sign in to comment.