-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(robot-server): Robot server command namespaces (#6098)
* adding namespaces * refactor after rebase * create multiple command definition enumerations. * allow backwards compatility for pre-namespaced command names * rename exit to exitSession * run app uses namespaced calibration check commands * Update robot-server/robot_server/service/session/models.py Co-authored-by: Brian Arthur Cooper <[email protected]> * Removed unused -TIP_LENGTH_TRANSITIONS dict * clean up naming * flow errors * fix js test Co-authored-by: Brian Arthur Cooper <[email protected]> closes #6089
- Loading branch information
amitlissack
authored
Jul 10, 2020
1 parent
83d7c7d
commit 73152e3
Showing
17 changed files
with
210 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
robot-server/robot_server/service/session/command_execution/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .base_command_queue import CommandQueue # noqa(W0611) | ||
from .base_executor import CommandExecutor # noqa(W0611) | ||
from .command import Command, CompletedCommand, create_command # noqa(W0611) | ||
from .command import Command, CompletedCommand, create_command, CommandResult # noqa(W0611) | ||
from .callable_executor import CallableExecutor # noqa(W0611) | ||
from .hardware_executor import HardwareExecutor, DefaultHardwareExecutor # noqa(W0611) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.