Skip to content

Commit

Permalink
WT-2117 Fixup logic bug in test/format I just introduced.
Browse files Browse the repository at this point in the history
  • Loading branch information
agorrod committed Sep 21, 2015
1 parent c2aa721 commit 752b2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/format/config.c
Expand Up @@ -171,7 +171,7 @@ config_setup(void)
}

/* Ensure there is at least 1MB of cache per thread. */
if (!config_is_perm("cache") && g.c_threads < g.c_cache)
if (!config_is_perm("cache") && g.c_cache < g.c_threads)
g.c_cache = g.c_threads;

/* Make the default maximum-run length 20 minutes. */
Expand Down

0 comments on commit 752b2b2

Please sign in to comment.