You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some cases, one plugin may contribute actions that reference a task contributed by a different plugin. In cases like these, care needs to be taken so that those actions don't try to access or reference that Task before it exists.
We could define a subclass of TaskAction called LazyTaskAction which waits until someone tries to access the task to define. This class could make use of the get_task method on the application as mentioned in #394
The text was updated successfully, but these errors were encountered:
Related to #394
In some cases, one plugin may contribute actions that reference a task contributed by a different plugin. In cases like these, care needs to be taken so that those actions don't try to access or reference that Task before it exists.
We could define a subclass of
TaskAction
calledLazyTaskAction
which waits until someone tries to access the task to define. This class could make use of theget_task
method on the application as mentioned in #394The text was updated successfully, but these errors were encountered: