Skip to content

Commit

Permalink
removed the default 127.0.0.1 from deploy --host argument
Browse files Browse the repository at this point in the history
  • Loading branch information
benknoll-umn committed Jan 18, 2024
1 parent 6007bd6 commit b0654dc
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions python/biomedicus/deployment/default_deployment.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
# Copyright 2022 Regents of the University of Minnesota.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from argparse import ArgumentParser
from contextlib import contextmanager
from typing import List, Optional, ContextManager
Expand Down Expand Up @@ -105,7 +91,7 @@ def argument_parser():
help="The log level for all processors."
)
parser.add_argument(
'--host', default='127.0.0.1',
'--host', default=None,
help="The hostname/ip to deploy the services on."
)
parser.add_argument(
Expand Down

0 comments on commit b0654dc

Please sign in to comment.