Skip to content

Commit

Permalink
GH-16170 fix CVE-2024-21634 with aws upgrade - cause was ion_ion-java…
Browse files Browse the repository at this point in the history
…:1.0.2 (#16168)

* GH-16170 Fix CVE-2024-21634 with aws upgrade - cause was ion_ion-java:1.0.2

* Fix number of timezones after ion-java upgrade
  • Loading branch information
valenad1 committed May 4, 2024
1 parent fe4cf5e commit e751e35
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ ext {
// Versions of libraries shared cross all projects
//
junitVersion = '4.12'
awsJavaSdkVersion = '1.12.268'
awsJavaSdkVersion = '1.12.705'

//
// Optional H2O modules which can be included h2o.jar assembly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def h2oget_timezone():
timezones = h2o.list_timezones()
assert_is_type(timezones, H2OFrame)

assert timezones.nrow == 467, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.nrow == 459, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.ncol == 1, "h2o.get_timezone() returns frame with wrong column number."

if __name__ == "__main__":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def h2olist_timezones():
timezones = h2o.list_timezones()
assert_is_type(timezones, H2OFrame)

assert timezones.nrow == 467, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.nrow == 459, "h2o.get_timezone() returns frame with wrong row number."
assert timezones.ncol == 1, "h2o.get_timezone() returns frame with wrong column number."


Expand Down

0 comments on commit e751e35

Please sign in to comment.