FLIPPER_DISABLE_KEYTAR env var to use in-memory impl

Summary: Changelog: FLIPPER_DISABLE_KEYTAR env var can be used to force in-memory implementation

Reviewed By: lblasa

Differential Revision: D49183501

fbshipit-source-id: 4ce886303678485673750417b09f272dd3f66623
This commit is contained in:
Pascal Hartig
2023-09-12 04:21:41 -07:00
committed by Facebook GitHub Bot
parent b60a8537ff
commit cd392929e0
3 changed files with 16 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ export async function startFlipperServer(
staticPath: string,
settingsString: string,
enableLauncherSettings: boolean,
keytarModule: KeytarModule,
keytarModule: KeytarModule | undefined,
type: FlipperServerType,
environmentInfo: EnvironmentInfo,
): Promise<FlipperServerImpl> {