Minor tweak for docker usage case of lambda running in AWS/lambda
This commit is contained in:
parent
0350ba419c
commit
0b1c4ae1a8
|
|
@ -117,9 +117,13 @@ def run(mode, bucket_name, obj_key, task_id)
|
||||||
puts "local manifest path #{local_manifest_path}"
|
puts "local manifest path #{local_manifest_path}"
|
||||||
# Initialize the S3 client for the manifest
|
# Initialize the S3 client for the manifest
|
||||||
s3_client = Aws::S3::Client.new(
|
s3_client = Aws::S3::Client.new(
|
||||||
region: tency_aws_region
|
region: tency_aws_region,
|
||||||
|
force_path_style: false,
|
||||||
|
endpoint: 'https://s3.us-east-1.amazonaws.com'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
puts s3_client.config.endpoint
|
||||||
|
|
||||||
importer = JamRuby::JamTrackLambdaImporter.new
|
importer = JamRuby::JamTrackLambdaImporter.new
|
||||||
|
|
||||||
#manifest = "/Users/seth/workspace/tency/scripts/manifests/ace-of-base_the-sign_10111/manifest.txt"
|
#manifest = "/Users/seth/workspace/tency/scripts/manifests/ace-of-base_the-sign_10111/manifest.txt"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue