Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ tasks.register('downloadNewRelicAgent', DefaultTask) {
include("**/newrelic-v*.jar")
})

def fileUrl = "https://download.newrelic.com/newrelic/java-agent/newrelic-agent/current/newrelic-java-${newrelic_version}.zip"
def fileUrl = "https://download.newrelic.com/newrelic/java-agent/newrelic-agent/${newrelic_version}/newrelic-java-${newrelic_version}.zip"
def destinationFile = file("$rootDir/newrelic/newrelic.zip")

new URL(fileUrl).withInputStream { inputStream ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ private Page<Vet> findPaginated(int page) {
}

@GetMapping("/vets/{lastName}")
public @ResponseBody Vets showResourcesVetList(@PathVariable(name = "lastName") String lastName) {
public @ResponseBody Vets showResourcesVetListByLastName(@PathVariable(name = "lastName") String lastName) {
Vets vets = new Vets();
Collection<Vet> vetList = this.vetRepository.findByLastName(lastName);
for (Vet vet : vetList) {
Expand Down
Loading