Skip to content

Commit

Permalink
Merge pull request #36927 from rolfedh/different-to-from
Browse files Browse the repository at this point in the history
Fix grammar error in OIDC and Bootstrap JavaDocs
  • Loading branch information
sberyozkin authored Nov 8, 2023
2 parents 3d7daa8 + d89abdb commit 80fbefb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,12 @@ public class OidcCommonConfig {
public Optional<Duration> connectionDelay = Optional.empty();

/**
* The number of times an attempt to re-establish an already available connection will be repeated for.
* Note this property is different to the `connection-delay` property which is only effective during the initial OIDC
* The number of times an attempt to re-establish an already available connection will be repeated.
* Note this property is different from the `connection-delay` property, which is only effective during the initial OIDC
* connection creation.
* This property is used to try to recover the existing connection which may have been temporarily lost.
* For example, if a request to the OIDC token endpoint fails due to a connection exception then the request will be retried
* for
* a number of times configured by this property.
* This property is used to try to recover an existing connection that may have been temporarily lost.
* For example, if a request to the OIDC token endpoint fails due to a connection exception, then the request will be
* retried the number of times configured by this property.
*/
@ConfigItem(defaultValue = "3")
public int connectionRetryCount = 3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class QuarkusBootstrap implements Serializable {
private final PathCollection applicationRoot;

/**
* The root of the project. This may be different to the application root for tests that
* The root of the project. This may be different from the application root for tests that
* run in a different directory.
*/
private final Path projectRoot;
Expand Down

0 comments on commit 80fbefb

Please sign in to comment.