Skip to content

Commit

Permalink
fix: oracle service name
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphg6 committed Jul 3, 2023
1 parent 370f97e commit a2989d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/typeorm.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const typeOrmConfig: TypeOrmConfig = (configService: ConfigService) => {
username: configService.get('JAMIE_API_DATABASE_USER'),
password: configService.get<string>('JAMIE_API_DATABASE_PASSWORD', 'changeme'),
database: configService.get<string>('JAMIE_API_DATABASE_NAME', 'jamie-api'),
sid: configService.get<string|undefined>('JAMIE_API_DATABASE_SERVICE_NAME'),
serviceName: configService.get<string|undefined>('JAMIE_API_DATABASE_SERVICE_NAME'),
timezone: 'Z',
entities: [join(__dirname, '..', 'src', '**', '*.entity{.js,.ts}')],
subscribers: [join(__dirname, '..', 'src', '**', '*.subscriber{.js,.ts}')],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jamie-api",
"version": "0.2.1-rc3",
"version": "0.2.1-rc4",
"description": "",
"author": "",
"private": true,
Expand Down

0 comments on commit a2989d1

Please sign in to comment.