Skip to content

Commit 98389d2

Browse files
author
Max Stepanov
authored
Fixed broken validation for some regions
aws_glue_regions definition was incorrect. Validation wont work for 'ap-northeast-1' and 'eu-west-1'
1 parent fd8cab8 commit 98389d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utilities/Hive_metastore_migration/src/hive_metastore_migration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1471,7 +1471,7 @@ def validate_aws_regions(region):
14711471
return
14721472

14731473
aws_glue_regions = [
1474-
'ap-northeast-1' # Tokyo
1474+
'ap-northeast-1', # Tokyo
14751475
'eu-west-1', # Ireland
14761476
'us-east-1', # North Virginia
14771477
'us-east-2', # Ohio

0 commit comments

Comments
 (0)