Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AB-xdev committed Jul 5, 2024
1 parent 0b21ad8 commit 68cc2a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
* Creates new infrastructure on demand and allows customizing the container.
* </p>
* <p>
* It's recommended to use this for certain infrastructure that is only required for a few tests.
* It's recommended to use this for certain infrastructure that is only required for a few tests
* and that uses stateful container starts.
* </p>
*/
public class OnDemandTCIFactory<C extends GenericContainer<C>, I extends TCI<C>>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void scrape()

final long scrapeTime = System.currentTimeMillis();

// Metrics lock like this:
// Metrics look like this:
// node_cpu_seconds_total{cpu="10",mode="idle"} 2012.73
final Map<Integer, Double> cpuIdleSec = Stream.of(response.body().split("\n"))
.filter(s -> s.startsWith("node_cpu_seconds_total"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private PortFixation()
{
}

private static TriConsumer<GenericContainer<?>, Integer, Integer> addFixedExposedPortFunc;
static TriConsumer<GenericContainer<?>, Integer, Integer> addFixedExposedPortFunc;

public static void makeExposedPortsFix(final GenericContainer<?> container)
{
Expand Down

0 comments on commit 68cc2a2

Please sign in to comment.