File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,16 @@ if [ ! -f sumo_app_utils.zip ]; then
17
17
echo " creating zip file"
18
18
mkdir python
19
19
cd python
20
- pip install crhelper -t .
21
- pip install requests -t .
22
- pip install retrying -t .
20
+ pip3 install crhelper -t .
21
+ pip3 install requests -t .
22
+ pip3 install retrying -t .
23
23
cp -v ../src/* .py .
24
24
zip -r ../sumo_app_utils.zip .
25
25
cd ..
26
26
rm -r python
27
27
fi
28
28
29
- version=" 2.0.9 "
29
+ version=" 2.0.15 "
30
30
31
31
aws s3 cp sumo_app_utils.zip s3://$SAM_S3_BUCKET /sumo_app_utils/v" $version " /sumo_app_utils.zip --region $AWS_REGION --acl public-read
32
32
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def create(event, context):
30
30
data , resource_id = resource .create (** params )
31
31
except Exception as e :
32
32
raise e
33
- print (data )
33
+ # print(data)
34
34
print (resource_id )
35
35
helper .Data .update (data )
36
36
helper .Status = "SUCCESS"
@@ -42,7 +42,7 @@ def create(event, context):
42
42
def update (event , context ):
43
43
resource , resource_type , params = get_resource (event )
44
44
data , resource_id = resource .update (** params )
45
- print (data )
45
+ # print(data)
46
46
print (resource_id )
47
47
helper .Data .update (data )
48
48
helper .Status = "SUCCESS"
You can’t perform that action at this time.
0 commit comments