Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
feat: added prefix option to redis#88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
2b4a128ded59c1c1b3f272c76b5463b45858437f3ab840dcaee27dc4435a53a17ccdf4File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| import jsLogger from '@map-colonies/js-logger'; | ||
| import { trace } from '@opentelemetry/api'; | ||
| import { SERVICES } from '@src/common/constants'; | ||
| import { S3_REPOSITORY_SYMBOL } from '@src/common/s3/s3Repository'; | ||
| import { cronLoadTileLatLonDataSymbol } from '@src/latLon/DAL/latLonDAL'; | ||
| import { GetBaseRegisterOptions } from '@tests/integration/helpers/types'; | ||
| export const getBaseRegisterOptions: GetBaseRegisterOptions = (options = []) => { | ||
| return { | ||
| override: [ | ||
| { token: SERVICES.LOGGER, provider: { useValue: jsLogger({ enabled: false }) } }, | ||
| { token: SERVICES.TRACER, provider: { useValue: trace.getTracer('testTracer') } }, | ||
| { token: S3_REPOSITORY_SYMBOL, provider: { useValue: {} } }, | ||
| { token: SERVICES.S3_CLIENT, provider: { useValue: {} } }, | ||
| { token: cronLoadTileLatLonDataSymbol, provider: { useValue: {} } }, | ||
| ...options, | ||
| ], | ||
| useChild: true, | ||
| }; | ||
| }; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| import jsLogger from '@map-colonies/js-logger'; | ||
| import { trace } from '@opentelemetry/api'; | ||
| import { SERVICES } from '@src/common/constants'; | ||
| import { S3_REPOSITORY_SYMBOL } from '@src/common/s3/s3Repository'; | ||
| import { cronLoadTileLatLonDataSymbol } from '@src/latLon/DAL/latLonDAL'; | ||
| import { GetBaseRegisterOptions } from '@tests/integration/helpers/types'; | ||
| export const getBaseRegisterOptions: GetBaseRegisterOptions = (options = []) => { | ||
| return { | ||
| override: [ | ||
| { token: SERVICES.LOGGER, provider: { useValue: jsLogger({ enabled: false }) } }, | ||
| { token: SERVICES.TRACER, provider: { useValue: trace.getTracer('testTracer') } }, | ||
| { token: S3_REPOSITORY_SYMBOL, provider: { useValue: {} } }, | ||
| { token: SERVICES.S3_CLIENT, provider: { useValue: {} } }, | ||
| { token: cronLoadTileLatLonDataSymbol, provider: { useValue: {} } }, | ||
| ...options, | ||
| ], | ||
| useChild: true, | ||
| }; | ||
| }; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| import jsLogger from '@map-colonies/js-logger'; | ||
| import { trace } from '@opentelemetry/api'; | ||
| import { SERVICES } from '@src/common/constants'; | ||
| import { S3_REPOSITORY_SYMBOL } from '@src/common/s3/s3Repository'; | ||
| import { cronLoadTileLatLonDataSymbol } from '@src/latLon/DAL/latLonDAL'; | ||
| import { GetBaseRegisterOptions } from '@tests/integration/helpers/types'; | ||
| export const getBaseRegisterOptions: GetBaseRegisterOptions = (options = []) => { | ||
| return { | ||
| override: [ | ||
| { token: SERVICES.LOGGER, provider: { useValue: jsLogger({ enabled: false }) } }, | ||
| { token: SERVICES.TRACER, provider: { useValue: trace.getTracer('testTracer') } }, | ||
| { token: S3_REPOSITORY_SYMBOL, provider: { useValue: {} } }, | ||
| { token: SERVICES.S3_CLIENT, provider: { useValue: {} } }, | ||
| { token: cronLoadTileLatLonDataSymbol, provider: { useValue: {} } }, | ||
| ...options, | ||
| ], | ||
| useChild: true, | ||
| }; | ||
| }; |
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be somewhere else that is more relevant