Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
udaij12 committed Sep 23, 2024
1 parent 198fcf2 commit ed9aefc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
public class ModelConfig {
private static final Logger logger = LoggerFactory.getLogger(ModelConfig.class);

public static final int defaultMinWorkers;
public static final int defaultMinWorkers = 1;
public static final int defaultBatchSize = 1;
public static final int defaultStartupTimeout = 120; // unit: sec
public static final int defaultResponseTimeout = 120; // unit: sec

/** the minimum number of workers of a model */
private int minWorkers = defaultMinWorkers;
private int minWorkers;
/** the maximum number of workers of a model */
private int maxWorkers;
/** the batch size of a model */
Expand Down

0 comments on commit ed9aefc

Please sign in to comment.