-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNO2-71-block-float-ints #1323
SNO2-71-block-float-ints #1323
Conversation
item = alignment_file_v11.copy() | ||
item.update( | ||
{ | ||
'schema_version': '11', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'schema_version': '12'
|
||
@pytest.fixture | ||
def alignment_file_v12(alignment_file_v11): | ||
item = alignment_file_v11.copy() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd suggest just copying the base fixture alignment_file, the versioned fixtures typically have deprecated properties/values. won't cause any problems here but it can in theory
|
||
@pytest.fixture | ||
def sequence_file_v14(sequence_file_v12): | ||
item = sequence_file_v12.copy() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd suggest just copying the base fixture sequence_file for the same reason as above
cdk/infrastructure/config.py
Outdated
@@ -62,7 +62,7 @@ | |||
'construct_id': 'Postgres', | |||
'on': True, | |||
'props': { | |||
'snapshot_source_db_identifier': DEV_DATABASE_IDENTIFIER, | |||
'snapshot_source_db_identifier': PROD_DATABASE_IDENTIFIER, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did snapshot identifier change from DEV_DATABASE_IDENTIFIER to PROD_DATABASE_IDENTIFIER? just want to make sure it's your intent to make this change.
No description provided.