Skip to content

Commit

Permalink
removed inMemoryOperation config param
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilianoSanchez committed Nov 23, 2021
1 parent 4022eea commit 34d9ea6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion e2e/synchronizer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ describe('Synchronizer e2e tests', () => {
describe('Synchronizer e2e tests - InMemoryOperation - only Splits & Segments mode', () => {
const synchronizerConfigs: SynchronizerConfigs = {
synchronizerMode: 'MODE_RUN_SPLIT_SEGMENTS',
inMemoryOperation: true,
};
/**
* Settings creation.
Expand Down
6 changes: 0 additions & 6 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,6 @@ const yargv = yargs(hideBin(argv))
choices: ['optimized', 'debug'],
nargs: 1,
},
g: {
alias: 'inMemoryOperation',
type: 'boolean',
description: 'Flag that enables all the Splits Synchronization operations to be proccessed in Memory.',
nargs: 0,
},
})
.config('config', (configPath) => JSON.parse(fs.readFileSync(configPath, 'utf-8')))
.help('h')
Expand Down
1 change: 0 additions & 1 deletion src/settings/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export default function synchronizerSettingsValidator(
eventsPerPost: 1000,
impressionsPerPost: 1000,
maxRetries: 3,
inMemoryOperation: false,
};

if (config.synchronizerConfigs) {
Expand Down

0 comments on commit 34d9ea6

Please sign in to comment.