Skip to content

Commit

Permalink
Merge pull request #42 from netfoundry/feature/remove_unsed_argument
Browse files Browse the repository at this point in the history
remove unused argument
  • Loading branch information
emoscardini authored Dec 14, 2023
2 parents 83738e3 + 76c2dfc commit 193844d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.2.4] - 2023-12-13

### Changed

- Removed `--controller` argument, since it's not in use.

## [1.2.3] - 2023-11-29

Expand Down
4 changes: 1 addition & 3 deletions router_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def create_parser():
:return: A Namespace containing arguments
"""
__version__ = '1.2.3'
__version__ = '1.2.4'
parser = argparse.ArgumentParser()

mgroup = parser.add_mutually_exclusive_group(required=True)
Expand Down Expand Up @@ -268,8 +268,6 @@ def create_parser():
action='store_false',
help='Skip applying fw rules',
default=True)
parser.add_argument('--controller',type=str,
help='Hostname or IP of Openziti controller')
parser.add_argument('--hostId', type=str,
help='Salstack minion host id')
parser.add_argument('--linkListener',
Expand Down

0 comments on commit 193844d

Please sign in to comment.