We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b4ab6a commit a67cb11Copy full SHA for a67cb11
pkg/workloads/cortex/serve/serve.py
@@ -39,7 +39,6 @@
39
40
41
def start(args):
42
- assert_api_version()
43
storage = S3(bucket=os.environ["CORTEX_BUCKET"], region=os.environ["AWS_REGION"])
44
try:
45
raw_api_spec = get_spec(storage, args.cache_dir, args.spec)
@@ -185,6 +184,7 @@ def extract_waitress_params(config):
185
184
186
187
def main():
+ assert_api_version()
188
parser = argparse.ArgumentParser()
189
na = parser.add_argument_group("required named arguments")
190
na.add_argument("--port", type=int, required=True, help="port (on localhost) to use")
0 commit comments