Skip to content

Commit

Permalink
[FLINK-20493] Increase timeouts for building FlinkContainer images
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidwys committed Dec 7, 2020
1 parent db0eb81 commit 390f185
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class SQLClientSchemaRegistryITCase {
public final Network network = Network.newNetwork();

@ClassRule
public static final Timeout TIMEOUT = new Timeout(8, TimeUnit.MINUTES);
public static final Timeout TIMEOUT = new Timeout(10, TimeUnit.MINUTES);

@Rule
public final KafkaContainer kafka = new KafkaContainer(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ private String buildBaseImage(Path flinkDist)
.build()
)
.withFileFromPath("flink", flinkDist)
.get(1, TimeUnit.MINUTES);
.get(4, TimeUnit.MINUTES);
}
return baseImage;
}
Expand Down

0 comments on commit 390f185

Please sign in to comment.