Fix tag resource for assigned targets. (#425)

* Fix tag resource for assigned targets. Shoudl behave as targets
resource.

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>

* Fix class

Signed-off-by: kaizimmerm <kai.zimmermann@bosch-si.com>
This commit is contained in:
Kai Zimmermann
2017-01-31 15:09:59 +01:00
committed by GitHub
parent 9980fd5619
commit c031142906
11 changed files with 24 additions and 31 deletions

View File

@@ -222,7 +222,7 @@ public class DeviceSimulatorUpdater {
try {
return readAndCheckDownloadUrl(url, targetToken, sha1Hash, size);
} catch (IOException | KeyManagementException | NoSuchAlgorithmException | KeyStoreException e) {
LOGGER.error("Failed to download" + url, e);
LOGGER.error("Failed to download " + url, e);
return new UpdateStatus(ResponseStatus.ERROR, "Failed to download " + url + ": " + e.getMessage());
}