Skip to content

Commit 85dd076

Browse files
committed
feat(app): Error Handling WP
1 parent f3018a0 commit 85dd076

File tree

6 files changed

+6
-9
lines changed

6 files changed

+6
-9
lines changed

apps/users-microservice/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ConfigService } from "@nestjs/config";
22
import { NestFactory } from "@nestjs/core";
33
import { MicroserviceOptions, Transport } from "@nestjs/microservices";
44

5-
import { ExceptionFilter, logger } from "@app/api-core";
5+
import { logger } from "@app/api-core";
66

77
import { AppModule } from "./app.module";
88

apps/users-microservice/src/modules/users/users.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { Inject, Injectable } from "@nestjs/common";
22
import { eq } from "drizzle-orm";
33
import { PostgresJsDatabase } from "drizzle-orm/postgres-js";
44
import { omit } from "ramda";
5-
import { throwError } from "rxjs";
65

76
import {
87
DATABASE_CONNECTION,

packages/db/src/supabase/migrations/tasks_db/meta/0000_snapshot.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
"schemas": {},
3636
"tables": {}
3737
}
38-
}
38+
}

packages/db/src/supabase/migrations/tasks_db/meta/_journal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
"breakpoints": true
1111
}
1212
]
13-
}
13+
}

packages/db/src/supabase/migrations/users_db/meta/0000_snapshot.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@
4040
"users_email_unique": {
4141
"name": "users_email_unique",
4242
"nullsNotDistinct": false,
43-
"columns": [
44-
"email"
45-
]
43+
"columns": ["email"]
4644
}
4745
}
4846
}
@@ -55,4 +53,4 @@
5553
"schemas": {},
5654
"tables": {}
5755
}
58-
}
56+
}

packages/db/src/supabase/migrations/users_db/meta/_journal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
"breakpoints": true
1111
}
1212
]
13-
}
13+
}

0 commit comments

Comments
 (0)