Skip to content

Commit

Permalink
fix missing link in api report
Browse files Browse the repository at this point in the history
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
  • Loading branch information
freben committed Nov 11, 2021
1 parent 85cc6bd commit 41009bb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/backend-tasks/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export type TaskFunction =
// @public
export class TaskScheduler {
constructor(databaseManager: DatabaseManager, logger: Logger_2);
// Warning: (ae-unresolved-link) The @link reference could not be resolved: The package "@backstage/backend-tasks" does not have an export "PluginTaskManager"
forPlugin(pluginId: string): PluginTaskScheduler;
// (undocumented)
static fromConfig(
Expand Down
2 changes: 1 addition & 1 deletion packages/backend-tasks/src/tasks/TaskScheduler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class TaskScheduler {
* Instantiates a task manager instance for the given plugin.
*
* @param pluginId - The unique ID of the plugin, for example "catalog"
* @returns A {@link PluginTaskManager} instance
* @returns A {@link PluginTaskScheduler} instance
*/
forPlugin(pluginId: string): PluginTaskScheduler {
const databaseFactory = memoize(async () => {
Expand Down

0 comments on commit 41009bb

Please sign in to comment.