Skip to content
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

fix(app,api,robot-server): remove old sim flag #15018

Merged
merged 6 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
mispelling
  • Loading branch information
sfoster1 committed Apr 25, 2024
commit d37c09e4dcd2c6ff7d753d63813fd5b19a031ef3
2 changes: 1 addition & 1 deletion api/src/opentrons/config/advanced_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ def _migrate33to34(previous: SettingsMap) -> SettingsMap:

- Removes disableFastProtocolUpload
"""
removals = ["disableFastProtocolUploads"]
removals = ["disableFastProtocolUpload"]
newmap = {k: v for k, v in previous.items() if k not in removals}
return newmap

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

@pytest.fixture
def migrated_file_version() -> int:
return 33
return 34


# make sure to set a boolean value in default_file_settings only if
Expand Down
Loading