Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

@Synchronized in Adaptavist ScriptRunner listener

I'm have a listener for Issue Create where I am generating a unique staff id. It looks through all of the issues to find the most recent id and then increments it by one. I then update the issue. This is fine unless two updates happen at once and then I get a race condition and duplicate staff ids. I've tried using the Synchronized directive, but I'm still getting dups. I'd appreciate any advice if there is something obvious that I'm doing wrong. Thanks for any help.

 

public class StaffId {

@Synchronized

public static void getNewStaffId(ApplicationUser user, Query query, CustomField staffIdField, Issue currentIssue, SearchService searchService, IssueService issueService) {

    def changeHolder = new DefaultIssueChangeHolder()

    SearchResults results = searchService.search(user, query,     PagerFilter.getUnlimitedFilter())

    int num=0

    int maxStaffIdNumber = 0

        

    for(Issue documentIssue: results.getIssues()) {

        num = documentIssue.getCustomFieldValue(staffIdField) as Integer

        if (num > maxStaffIdNumber) {

            maxStaffIdNumber=num

       }

    }

        

    def newStaffIdNumber = ++maxStaffIdNumber as Double 

    staffIdField.updateValue(null, currentIssue,  new  ModifiedValue(currentIssue.getCustomFieldValue(staffIdField), newStaffIdNumber), changeHolder);

   def update = issueService.validateUpdate(user, currentIssue.getId(),    issueService.newIssueInputParameters())

                                                 

    if (update.isValid()) {

         issueService.update(user, update)

    }

 }

}

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events