Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions fdk/scripts/fdk_tcp_debug.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2019, 2022 Oracle and/or its affiliates. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -28,12 +28,12 @@ def main():
sys.exit("at least func module must be specified")

if not os.path.exists(sys.argv[2]):
sys.exit("Module: {0} doesn't exist".format(sys.argv[1]))
sys.exit("Module: {0} doesn't exist".format(sys.argv[2]))

if len(sys.argv) > 3:
handler = customer_code.Function(
sys.argv[2], entrypoint=sys.argv[3])
else:
handler = customer_code.Function(sys.argv[1])
handler = customer_code.Function(sys.argv[2])

tcp_debug.handle(handler, port=int(sys.argv[1]))