Workspace plugin should read location from its config section (workspace.location) #176
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Competitor
Kind/Documentation
Kind/Enhancement
Kind/Epic
Kind/Feature
Kind/Security
Kind/Story
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Scope/Core
Scope/Cross-Plugin
Scope/Plugin-System
Scope/Single-Plugin
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
ultanio/cobot#176
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The workspace plugin reads its path from
config.get("workspace")as a top-level string, which conflicts with the plugin config pattern where each plugin gets a config section as a dict.Expected
The workspace location should be configurable under the workspace plugin's config section:
The plugin should read:
Current Code
workspace/plugin.pyconfigure():This doesn't follow the plugin config convention and would break if
workspace:is a dict with sub-keys.Also Needed
~/.cobot/workspace)Related