Ensure we deal with byte values for memoryLimit

This commit is contained in:
Johannes Zellner
2016-02-11 17:29:00 +01:00
parent 75d22d7988
commit 8c6f655628
3 changed files with 15 additions and 7 deletions

View File

@@ -294,7 +294,8 @@ angular.module('Application').service('Client', ['$http', 'md5', 'Notification',
accessRestriction: config.accessRestriction,
oauthProxy: config.oauthProxy,
cert: config.cert,
key: config.key
key: config.key,
memoryLimit: config.memoryLimit
};
$http.post(client.apiOrigin + '/api/v1/apps/' + id + '/configure', data).success(function (data, status) {