Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix grammar error in OIDC and Bootstrap JavaDocs #36927

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading