Merge pull request #829 from spotify/mob/refresh

Implement first-light location refresh loop
This commit is contained in:
Fredrik Adelöw
2020-05-13 10:33:47 +02:00
committed by GitHub
9 changed files with 165 additions and 20 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ import {
} from '@backstage/plugin-catalog-backend';
import { PluginEnvironment } from '../types';
export default async function ({ logger, database }: PluginEnvironment) {
const catalog = await DatabaseCatalog.create(database);
export default async function({ logger, database }: PluginEnvironment) {
const catalog = await DatabaseCatalog.create(database, logger);
return await createRouter({ catalog, logger });
}