Skip to content

Commit

Permalink
remove strict flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiri Otoupal committed Sep 21, 2023
1 parent 73f55ff commit 90616ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion abst/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"CLI Command making OCI Bastion and kubernetes usage simple and fast"
)

__version__ = "2.1.0"
__version__ = "2.1.1"
__author__ = "Jiri Otoupal"
__author_email__ = "jiri-otoupal@ips-database.eu"
__license__ = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion abst/bastion_support/oci_bastion.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Bastion:
stopped = False
session_list = []
session_desc = dict()
custom_ssh_options: str = "-o StrictHostKeyChecking=no -o ServerAliveInterval=20 -o UserKnownHostsFile=/dev/null"
custom_ssh_options: str = "-o ServerAliveInterval=20"

def __init__(self, context_name=None, region=None):
self.context_name = context_name
Expand Down

0 comments on commit 90616ba

Please sign in to comment.