Skip to content

Commit

Permalink
correct timeout constant
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeddada1 committed Oct 16, 2024
1 parent 9f652cd commit 3330dc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public List<DescriptorDigest> getDiffIds() throws DigestException {
/**
* 10 minute timeout to ensure that Jib doesn't get stuck indefinitely when expecting a docker output
*/
public static final Long DOCKER_OUTPUT_TIMEOUT = (long) 10;
public static final Long DOCKER_OUTPUT_TIMEOUT = (long) 10 * 60 * 1000;

/**
* Checks if Docker is installed on the user's system by running the `docker` command.
Expand Down

0 comments on commit 3330dc8

Please sign in to comment.