Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
Reformat ProcessExecutionQueues using 2 spaces indentation (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
Atry authored Nov 24, 2021
1 parent 4c6abf2 commit 01f1e17
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/__Private/ProcessExecutionQueues.hack
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ namespace Facebook\HHAST\__Private;

enum class ProcessExecutionQueues: ProcessExecutionQueue {

// Random number; it might seem high, but it's likely that `hh_parse` will
// execute quick enough that most of the processes are waiting to be cleaned
// up
ProcessExecutionQueue HH_CLIENT =
new ProcessExecutionQueue(2, 'hh_client');
ProcessExecutionQueue HH_PARSE = new ProcessExecutionQueue(32, 'hh_parse');
// Random number; it might seem high, but it's likely that `hh_parse` will
// execute quick enough that most of the processes are waiting to be cleaned
// up
ProcessExecutionQueue HH_CLIENT = new ProcessExecutionQueue(2, 'hh_client');
ProcessExecutionQueue HH_PARSE = new ProcessExecutionQueue(32, 'hh_parse');

}

0 comments on commit 01f1e17

Please sign in to comment.