File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ function getEvlFeedByVrmDetails(queryResult: QueryOutput): EvlFeedData {
221
221
}
222
222
223
223
function getFeedDetails ( queryResult : QueryOutput , feedName : FeedName ) : EvlFeedData [ ] | TflFeedData [ ] {
224
- const feedQueryResults : EvlFeedData [ ] | TflFeedData [ ] = feedName === FeedName . EVL ? ( queryResult [ 0 ] [ 1 ] as EvlFeedData [ ] ) : ( queryResult [ 0 ] as TflFeedData [ ] ) ;
224
+ const feedQueryResults : EvlFeedData [ ] | TflFeedData [ ] = feedName === FeedName . EVL ? ( queryResult [ 0 ] as EvlFeedData [ ] ) : ( queryResult [ 0 ] as TflFeedData [ ] ) ;
225
225
if ( feedQueryResults === undefined || feedQueryResults . length === 0 ) {
226
226
throw new NotFoundError ( 'No tests found' ) ;
227
227
}
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ export default class DatabaseService implements DatabaseServiceInterface {
41
41
port : dbConnectionDetails . port ,
42
42
database : process . env . SCHEMA_NAME ,
43
43
multipleStatements : true ,
44
- charset : 'utf8mb4' ,
45
44
} ) ;
46
45
}
47
46
You can’t perform that action at this time.
0 commit comments