Encoding problem when configuring a plan
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Symptoms
When configuring a plan, under the Source Repositories tab, as soon as the repository is selected, the following exception shows up:
1
2
3
Line 17017: java.lang.IllegalArgumentException: Neither input() nor doÝnput() is found in action class com.atlassian.bamboo.ww2.actions.build.admin.config.repository.EditRepository
Line 17106: at com.opensymphony.xwork.interceptor.ExceptionMappingInterceptor.intercept(ExceptionMappingInterceptor.java:186)
Line 17106: at com.opensymphony.xwork.interceptor.ExceptionMappingInterceptor.intercept(ExceptionMappingInterceptor.java:186)
Cause
This is an encoding problem. In Turkish language the capital 'I' is translated to 'İ'. The class contains the 'I' character and the JVM interprets it: java.lang.IllegalArgumentException:NeitherInput() nor doinput().
Resolution
please try to change your java locale for bamboo to:
1
2
-Duser.country=EN
-Duser.language=en
and re-start Bamboo.
To set the JVM parameter please refer to the this document: Configuring Bamboo on start-up.
Was this helpful?