Skip to content

Commit

Permalink
temporary version update
Browse files Browse the repository at this point in the history
  • Loading branch information
SooLee committed Apr 1, 2021
1 parent d208c1e commit a25818b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/awsf3/postrunjson/GBPtlqb2rFGH.postrun.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
"shutdown_min": "now",
"spot_duration": "",
"spot_instance": true,
"subnet": ""
"subnet": "",
"use_benchmark": false
}
}
2 changes: 1 addition & 1 deletion tibanna/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "1.2.0b"
__version__ = "1.2.0b1"
2 changes: 1 addition & 1 deletion tibanna/ec2_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def auto_fill(self):
if args.app_name and args.app_name in B.app_name_function_map:
pass # use benchmarking
else:
if not cfg.ebs_size: # unset (set to 0)
if not cfg.ebs_size or cfg.ebs_size < 10: # unset (set to 0) or <10GB
cfg.ebs_size = 10 # if not set by user or benchmark, just use 10GB as default
if not cfg.EBS_optimized: # either false or unset
cfg.EBS_optimized = False # False by default so t2 instances can be used
Expand Down

0 comments on commit a25818b

Please sign in to comment.