I am using JIRA 4.3.4. I am facing an issue i.e. reporter "Anonymous". When i create the ticket in any project at that time reporter name is displayed on my name. In case internet is not connecting for sometime and back to the normal stage i.e. Internet is connect. After that Reporter name is displayed on "Anonymous".
If talking about log file, i had got one exception which is provided given below:
RemotePluginLicenseNotificationPluginJob-job [atlassian.upm.notification.PluginLicenseNotificationCheckerImpl] Automatic license
update check failed: com.atlassian.upm.mac.HamletException: javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated
I am unable to understand that where the issue is raised either from Workflow side or Permission or any other.
Somebody can help me on this.
Anonymous reporter usually means one of:
The exception in your log file is about Jira doing one of its regular checks connecting to the marketplace, it's failing SSL, but this is not related to the anonymous reporter.
What user directory are you using, and does the reporter you're expecting to use exist?
One Xml file is provided i.e. oxuser. On that we are providing the IP address, user and password. I don't know how it is configured.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Type: Generic Directory Server
<property name="java.naming.factory.initial">com.sun.jndi.ldap.LdapCtxFactory</property>
<provider class="com.atlassian.core.ofbiz.osuser.CoreOFBizCredentialsProvider">
<property name="exclusive-access">true</property>
</provider>
<provider class="com.atlassian.jira.user.osuser.JiraOFBizProfileProvider">
<property name="exclusive-access">true</property>
</provider>
<provider class="com.atlassian.jira.user.osuser.JiraOFBizAccessProvider">
<property name="exclusive-access">true</property>
</provider>
The user i.e. created the ticket that comes under this directory.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That snippet of filedoes not tell us what your user directory is, as it is a set of providers that could be configured, not the one(s) you have added.
What directory does Admin -> User Directories say is in use?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"crowd.delegated.directory.type": "com.atlassian.crowd.directory.GenericLDAP"
I am the new one on Directory configuration that's why I unable to catch to your point.
Kindly check and confirm us.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, you're using and LDAP server. You will find your "anonymous" users are people who you have removed from LDAP, or that the issues were created by people who are not in Jira's view sending email to it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist-: Its the issue in LDAP server. Now fixed it from the network administrator team. Also Sorry for the late response.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist-: The new JIRA has been installed and i am facing the issue in scriptrunner. I m searching for 2 days.
The two point is provided below which i need to fix:
1. I am unable to restrict for update the value of an issue at the time of issue update event. I had created a script on script listener.
2. Instead of hard coded value for key, i want to use dynamic code on script-runner. Means if the ticket is sub-task issue and project will be the same then the below script will execute.
Here the script is provided below and the requirement is duedate value for Task IssueType should be greater than the Duedate value for n number of subtask IssueType :
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.Issue
import groovy.transform.BaseScript
import com.onresolve.scriptrunner.runner.customisers.ContextBaseScript
import com.onresolve.scriptrunner.runner.util.UserMessageUtil
import com.opensymphony.workflow.InvalidInputException
//
@BaseScript ContextBaseScript script
Issue issue = getIssueOrDefault("TEST-258") // Hard coded issue-key defined
if(issue.parentObject.dueDate.compareTo(issue.getDueDate()) >= 0)
{
UserMessageUtil.success("Due Date Success"+issue.dueDate)
log.debug(issue.getDueDate())
}
else
{
UserMessageUtil.success('Please enter the Subtask duedate that is less than Parent-Task Due-Date ')
//throw new InvalidInputException("Input not valid")
}
The problem is that when the condition fails then the date will be update first and next the pop up alert is raised which i mentioned in the code but I am unable to restrict the due date update. Also recommend us for second point on run-time environment(on production).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please raise this as a new question - your comment has nothing to do with this 8-month old question on a separate topic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.