Skip to content

Commit

Permalink
Remove conversion of GB to MB for MemoryAmmout
Browse files Browse the repository at this point in the history
That is now being managed by the docker-machine-driver-upcloud.
  • Loading branch information
a-rmz committed May 6, 2019
1 parent e47f860 commit a6b8b89
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions component/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ export default Ember.Component.extend(NodeDriver, {
errors.push('Memory Size must be at least 1 GB');
} else if (memoryAmount > 128) {
errors.push('CPU count has to be smaller or equal than 128GB');
} else {
set(this, 'config.memoryAmount', memoryAmount * 1024);
}

const storageSize = parseInt(get(this, 'config.storageSize'), defaultRadix);
Expand Down

0 comments on commit a6b8b89

Please sign in to comment.