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

[WFCORE-6946] Fix word order #6136

Merged
merged 1 commit into from
Aug 20, 2024
Merged
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 @@ -3645,10 +3645,10 @@ OperationFailedRuntimeException capabilityAlreadyRegisteredInContext(String capa
@Message(id = 478, value = "Unable to create command based CredentialSource for credential reference.")
OperationFailedException unableToBuildCommandCredentialSource(@Cause Throwable throwable);

@Message(id = 479, value = "Attribute '%s' at resource '%s' with unresolved value '%s' cannot be resolved using the non-security-sensitive sources resolution supported by the 'resolve' parameter. Response will report the unresolved value.")
@Message(id = 479, value = "Attribute '%s' at resource '%s' with unresolved value '%s' cannot be resolved using the non-security-sensitive resolution sources supported by the 'resolve' parameter. Response will report the unresolved value.")
String attributeUnresolvableUsingSimpleResolution(String attribute, String address, ModelNode unresolved);

@Message(id = 480, value = "Expression '%s' cannot be resolved using the non-security-sensitive sources resolution supported by the '%s' operation. Response will report the unresolved value.")
@Message(id = 480, value = "Expression '%s' cannot be resolved using the non-security-sensitive resolution sources supported by the '%s' operation. Response will report the unresolved value.")
String expressionUnresolvableUsingSimpleResolution(ModelNode unresolved, String opName);

@LogMessage(level = WARN)
Expand Down