mailResources #5

Merged
v4l3n71n merged 12 commits from mailResources into master 2022-06-29 20:48:55 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit d36a7f8e41 - Show all commits

View File

@ -52,7 +52,7 @@ public class MailRessource {
@GET
@Path("get-redis/{id}")
public Response getRedis(@PathParam("id") String id){
return Response.ok().entity(redisClient.get(id)).build();
return Response.ok().entity(redisClient.get(id).toString()).build();
}

View File

@ -25,4 +25,3 @@ quarkus.mailer.mock=false
quarkus.redis.hosts=redis://localhost:6379