Skip to content

Commit d51c309

Browse files
committed
Run smoke tests for connectivity purposes
1 parent 20ee9dc commit d51c309

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

api/src/infrastructure/infrastructure.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Module, DynamicModule } from '@nestjs/common';
22
import { ConfigModule } from '@nestjs/config';
33
import { ShortenUrlRepository } from '../shorten-url/shorten-url.repository';
44
import { ShortenUrlRepositoryFactory } from './repository/shorten-url/shorten-url-repository.factory';
5-
import { DynamoDbClientProvider } from './provider/dynamo-db-client-provider.service';
5+
import { DynamoDbClientProvider } from './provider/dynamo-db-client-provider';
66
import { RedisClientProvider } from './provider/redis-client.provider';
77
import { HealthController } from './monitoring/health.controller';
88

api/src/infrastructure/repository/shorten-url/persistent-url-storage.repository.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Injectable, Logger } from '@nestjs/common';
33
import { ConfigService } from '@nestjs/config';
44
import { unmarshall } from '@aws-sdk/util-dynamodb';
55
import { RedisClientProvider } from '../../provider/redis-client.provider';
6-
import { DynamoDbClientProvider } from '../../provider/dynamo-db-client-provider.service';
6+
import { DynamoDbClientProvider } from '../../provider/dynamo-db-client-provider';
77

88
@Injectable()
99
export class PersistentUrlStorageRepository implements ShortenUrlRepository {

api/src/infrastructure/repository/shorten-url/shorten-url-repository.factory.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ import { Provider } from '@nestjs/common';
33
import { InMemoryUrlStorageRepository } from './in-memory-url-storage.repository';
44
import { ShortenUrlRepository } from '../../../shorten-url/shorten-url.repository';
55
import { PersistentUrlStorageRepository } from './persistent-url-storage.repository';
6-
import { DynamoDBClient } from '@aws-sdk/client-dynamodb';
76
import { RedisClientProvider } from '../../provider/redis-client.provider';
8-
import { DynamoDbClientProvider } from '../../provider/dynamo-db-client-provider.service';
7+
import { DynamoDbClientProvider } from '../../provider/dynamo-db-client-provider';
98

109
/**
1110
* Factory provider to select the appropriate repository implementation based on configuration.

0 commit comments

Comments
 (0)