Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/web-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import {
} from "@posthog/core/auth/identifiers";
import { canvasCoreModule } from "@posthog/core/canvas/canvas.module";
import { taskThreadCoreModule } from "@posthog/core/canvas/taskThread.module";
import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task";
import { cloudTaskModule } from "@posthog/core/cloud-task/cloud-task.module";
import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task-engine";
import {
CLOUD_TASK_AUTH,
CLOUD_TASK_SERVICE,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/cloud-task/cloud-task.module.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ContainerModule } from "inversify";
import { CloudTaskService } from "./cloud-task";
import { CloudTaskService } from "./cloud-task-engine";
import { CLOUD_TASK_SERVICE } from "./identifiers";

export const cloudTaskModule = new ContainerModule(({ bind }) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/cloud-task/cloud-task.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const fetchRouter = vi.hoisted(() =>
}),
);

import { CloudTaskService } from "./cloud-task";
import { CloudTaskService } from "./cloud-task-engine";

const mockAuthService = {
authenticatedFetch: vi.fn(),
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/handoff/handoff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
TypedEventEmitter,
} from "@posthog/shared";
import { inject, injectable } from "inversify";
import type { CloudTaskService } from "../cloud-task/cloud-task";
import type { CloudTaskService } from "../cloud-task/cloud-task-engine";
import { CLOUD_TASK_SERVICE } from "../cloud-task/identifiers";
import { HandoffSaga, type HandoffSagaDeps } from "./handoff-saga";
import {
Expand Down
2 changes: 1 addition & 1 deletion packages/host-router/src/routers/cloud-task.router.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task";
import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task-engine";
import { CLOUD_TASK_SERVICE } from "@posthog/core/cloud-task/identifiers";
import {
CloudTaskEvent,
Expand Down
Loading