Skip to content

Commit

Permalink
Merge branch 'master' into sprint-8
Browse files Browse the repository at this point in the history
  • Loading branch information
toxophilist authored Aug 26, 2020
2 parents e8e85b2 + 5c6212c commit 7017d80
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 281 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@
3. Internet Gateways could only be created on the first subnet in a vcn (Issue: #71).


## Version 0.9.2
**Release Date**: 7th August 2020
### Bug Fixes
1. Unable to drop gateways on second or subsequent VCNs (Issue #73).


## Version 0.9.1
**Release Date**: 6th August 2020
### Bug Fixes
1. Config file warning being displayed when only [DEFAULT] section defined (OKIT-110).


## Version 0.9.0
**Release Date**: 5th August 2020
### Features
Expand Down
2 changes: 1 addition & 1 deletion containers/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FROM oraclelinux:7-slim
LABEL "provider"="Oracle" \
"issues"="https://github.com/oracle/oci-designer-toolkit/issues" \
"version"="0.9.0" \
"version"="0.9.2" \
"description"="OKIT Web Server Container." \
"copyright"="Copyright (c) 2020, Oracle and/or its affiliates."
SHELL ["/bin/bash", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion okitweb/okitWebDesigner.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def validateConfigFile(config_file='~/.oci/config'):
config = configparser.ConfigParser()
config.read(abs_config_file)
results = []
if len(config.sections()) == 0:
if len(config.sections()) == 0 and 'DEFAULT' not in config:
results.append('OCI Connect Config file is either missing or empty.')
else:
for section in config:
Expand Down
202 changes: 0 additions & 202 deletions okitweb/static/okit/js/okit_template_artifact.js

This file was deleted.

Loading

0 comments on commit 7017d80

Please sign in to comment.