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 06636d2 commit 830d9c4Copy full SHA for 830d9c4
sparkLambdaHandler.py
@@ -38,7 +38,7 @@ def spark_submit(s3_bucket_script: str,input_script: str, event: dict)-> None:
38
# Source input and output if available in event
39
input_path = event.get('INPUT_PATH','')
40
output_path = event.get('OUTPUT_PATH', '')
41
- for key,value in event:
+ for key,value in event.items():
42
os.environ[key] = value
43
# Run the spark-submit command on the local copy of teh script
44
try:
0 commit comments