Commit
·
5d649ba
1
Parent(s):
653bd2d
Removed need to write result.stdout in lambda entrypoint
Browse files- lambda_entrypoint.py +2 -1
lambda_entrypoint.py
CHANGED
@@ -97,7 +97,8 @@ def lambda_handler(event, context):
|
|
97 |
|
98 |
try:
|
99 |
result = subprocess.run(command, capture_output=True, text=True, check=True)
|
100 |
-
print("Processing succeeded
|
|
|
101 |
except subprocess.CalledProcessError as e:
|
102 |
print("Error during processing:", e.stderr)
|
103 |
raise e
|
|
|
97 |
|
98 |
try:
|
99 |
result = subprocess.run(command, capture_output=True, text=True, check=True)
|
100 |
+
print("Processing succeeded.")
|
101 |
+
#print("Processing succeeded:", result.stdout)
|
102 |
except subprocess.CalledProcessError as e:
|
103 |
print("Error during processing:", e.stderr)
|
104 |
raise e
|