Defaulting SQS to on in development environments, this removes the need for setting it in the management scripts.
This commit is contained in:
parent
10dc832587
commit
b622df2683
|
@ -267,5 +267,5 @@ export class FlagSet<V extends Flag<any>, T extends { [key: string]: V }> {
|
|||
// default values set correctly and their types flow through the system.
|
||||
export const flags = new FlagSet({
|
||||
DEFAULT_VALUES: Flag.boolean(false),
|
||||
SQS: Flag.boolean(false),
|
||||
SQS: Flag.boolean(env.isDev()),
|
||||
})
|
||||
|
|
|
@ -47,7 +47,6 @@ async function init() {
|
|||
HTTP_LOGGING: "0",
|
||||
VERSION: "0.0.0+local",
|
||||
PASSWORD_MIN_LENGTH: "1",
|
||||
TENANT_FEATURE_FLAGS: "*:SQS",
|
||||
}
|
||||
|
||||
config = { ...config, ...existingConfig }
|
||||
|
|
|
@ -30,7 +30,6 @@ async function init() {
|
|||
HTTP_LOGGING: "0",
|
||||
VERSION: "0.0.0+local",
|
||||
PASSWORD_MIN_LENGTH: "1",
|
||||
TENANT_FEATURE_FLAGS: "*:SQS",
|
||||
}
|
||||
|
||||
config = { ...config, ...existingConfig }
|
||||
|
|
Loading…
Reference in New Issue