Skip to content

Commit

Permalink
Use python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
haraprasadj committed Aug 2, 2024
1 parent b4caee3 commit 51b2df5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gen3/test/bootstrapTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test_bootstrap_fenceconfig() {
because $? "secret template exists and is valid yaml: $secretConf"
[[ -f "$publicConf" ]] && yq -r . < "$secretConf" > /dev/null;
because $? "public template exists and is valid yaml: $secretConf"
python3.8 "$GEN3_HOME/apis_configs/yaml_merge.py" "$publicConf" "$secretConf" | yq -r . > /dev/null;
python3.9 "$GEN3_HOME/apis_configs/yaml_merge.py" "$publicConf" "$secretConf" | yq -r . > /dev/null;
because $? "yaml_perge public private should yield valid yaml"
}

Expand Down
2 changes: 1 addition & 1 deletion gen3/test/fenceStuffTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ EOM
C: 4
B: 3
EOM
json3="$(python3.8 "$GEN3_HOME/apis_configs/yaml_merge.py" "$yaml1" "$yaml2")"; because $? "yaml_merge should succeed"
json3="$(python3.9 "$GEN3_HOME/apis_configs/yaml_merge.py" "$yaml1" "$yaml2")"; because $? "yaml_merge should succeed"
[[ "1" == "$(jq -r .A <<<"$json3")" ]]; because $? ".A should be 1"
/bin/rm "$yaml1"
/bin/rm "$yaml2"
Expand Down
2 changes: 1 addition & 1 deletion tf_files/aws/modules/eks/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ resource "aws_lambda_function" "gw_checks" {

source_code_hash = "${data.archive_file.lambda_function.output_base64sha256}"

runtime = "python3.8"
runtime = "python3.9"

environment {
variables = {
Expand Down

0 comments on commit 51b2df5

Please sign in to comment.