remove leading slash of path, because other resources also don't have

the leading slash

Signed-off-by: Michael Hirsch <michael.hirsch@bosch-si.com>
This commit is contained in:
Michael Hirsch
2016-04-27 08:39:12 +02:00
parent c3cc00b4ba
commit e5ddf075be

View File

@@ -17,5 +17,5 @@ import org.springframework.cloud.netflix.feign.FeignClient;
@FeignClient(url = "${hawkbit.url:localhost:8080}/" + MgmtTargetClientResource.PATH)
public interface MgmtTargetClientResource extends MgmtTargetRestApi {
static String PATH = "/rest/v1/targets";
static String PATH = "rest/v1/targets";
}