Standard Procedure to validate a migrated repository

Hi Team,

I have migrated few repositories from SVN to Bitbucket. I would like to know if there are any standard procedures to validate a migrated repository so that all the code, the branches, the commits and the tags, i.e, everything is intact after the migration.

I would also like to know if you can help on merging few repositories in to one repository on Bitbucket.

Can you please let us know your thoughts on these?

Thanks,
Sitaram

Hi Sitaram,

basically, SVN Mirror add-on verifies the data during the migration, so if an initial import finishes successfully, that means that all the data according to the mapping configuration is in the target Bitbucket repository, there are no extra procedures to check the migrated data.

I’m afraid, SVN Mirror add-on has no functionality to merge Bitbucket repositories, it always mirror SVN to Bitbucket repositories one to one. However, it is possible to combine repositories embedding them as modules with our new product called Git X-Modules:

TMate Software
Atlassian Marketplace

Git X-Modules allows including one (or more) repository as a module (subdirectory) in another repository and update the module as the source module repository updates, would it satisfy the merging needs you have?

Hi Ildar,

I noticed the revisions of one svn repo do not match with the commits on migrated repo.

There are 1011 revisions on trunk branch in svn repository but the migrated repository’s master branch has just 474 commits.

I checked multiple other branches for the count of revisions on this svn repository and the count of the commits on the respective branches on migrated repository and they do not match.

Branch A on SVN - 1011 revisions → Branch A on migrated repository has 474 commits
Branch B on SVN - 1012 revisions → Branch B on migrated repository has 475 commits
Branch C on SVN - 1011 revisions → Branch C on migrated repository has 474 commits
Branch D on SVN - 1007 revisions → Branch D on migrated repository has 471 commits

Can you please help on why the commits went missing on the migrated repository?

This is a critical issue as the integrity of the migration itself is at stake.

Thanks,
Sitaram

Hi Sitaram,

such a difference between svn log and git log outputs does not necessarily indicate a fault, the difference may originate just from the difference between SVN and Git version control systems. This difference may also be expected originating from the mapping configuration since SVN Mirror add-on may import not all the data and entities from SVN. Additionally, it may be a history translation issue that only affects the history got log <branch> command show but not the commits and data, and such a situation may be expected under certain circumstances, like renaming an SVN branch not by SVN means but instead with the OS’s mv command, for example.
In any case, it’s very hard to say for sure what the difference is originated from, it requires a deeper investigation. First, could you please advise how exactly did you count the revisions in SVN and in Bitbucket – namely, what command has you run for the counting? Then, could you please share the mapping configuration along with SVN Mirror logs from the affected repository? And also, could it be possible to share 'svn log -v` and ‘git log’ outputs for the affected branches to investigate?

Hi Ildar,

The mapping configurations that we used for importing SVN repository to Bitbucket are as follows.

trunk = trunk:refs/heads/master
branches = branches/:refs/heads/
tags = tags/:refs/tags/
shelves = shelves/:refs/shelves/
triggerGitGC = false

Please find the commands from both SVN and Bitbucket.

The revision count from SVN repository:

svn log -v http://xxxxxxxx/svn/build/branches/B_6_1/ -q | grep ^r
r9920 | ChuA | 2008-06-01 01:13:59 -0700 (Sun, 01 Jun 2008)
r9919 | ChuA | 2008-06-01 01:12:25 -0700 (Sun, 01 Jun 2008)
r9918 | ChuA | 2008-06-01 01:11:01 -0700 (Sun, 01 Jun 2008)
r2 | buildserver | 2008-05-31 17:45:24 -0700 (Sat, 31 May 2008)
r1 | buildserver | 2008-05-31 16:45:43 -0700 (Sat, 31 May 2008)
(included just few here but got a total of 1012 revisions)

svn log -v http://xxxxxxxx/svn/build/branches/B_6_1/ -q | grep ^r | wc -l
1012

The commands from Git repository, same branch:

git rev-list --count HEAD
475

git log | grep ^commit
commit e38b5ec3dc625035410dfafa75801aaad02c21c9
commit 59c3b2a80918b9e1b67e877ab7bf522726ed4812
commit 4595d35c858f499300c23fd613cd1abac0a74671
commit 7d5b9b0f08a3aca1343bf2424de449c0ea92b92a
commit 98029d7e90e37e14714cd4b600431ec56f84c209
commit cd1d631b5510551e3347414411e26088843154c4

git log | grep ^commit | wc -l
475

The difference in the count of commits is seen in every branch in this repository.

Please find the alternative commands on SVN and GIT for the given branches.

svn log -v http://xxxxxxxx/svn/build/branches/B_5_8/ -q | grep ^r | wc -l
1000

git checkout B_5_8
Switched to a new branch ‘B_5_8’
git log | grep ^commit | wc -l
463
git rev-list --count HEAD
463

svn log -v http://xxxxxxxx/svn/build/branches/B_5_7/ -q | grep ^r | wc -l
998

git checkout B_5_7
Switched to a new branch ‘B_5_7’
git rev-list --count HEAD
461

svn log -v http://xxxxxxxx/svn/build/branches/B_5_6/ -q | grep ^r | wc -l
993

git checkout B_5_6
Switched to a new branch ‘B_5_6’
git rev-list --count HEAD
457

svn log -v http://xxxxxxxx/svn/build/branches/B_5_5/ -q | grep ^r | wc -l
987

git checkout B_5_5
Switched to a new branch ‘B_5_5’
git rev-list --count HEAD
450

Note: The commit history of other SVN repositories match with the commit history of their respective Bitbucket repositories. The issue is seen in this specific repository only.

The first revision on SVN in trunk was done on 31st May 2008 where as the first commit on master branch on Bitbucket repository is on 19th May 2011. The commit history between May 2008 and May 2011 is completely missing.

Please let us know if you need any other information.

Thanks,
Sitaram

Hello Sitaram,

thank you for your response and the provided information.

I’m afraid though, that these outputs give us very little clue on what is happening there, we would need full commands outputs to be able to compare the logs commit-by-commit and comprehend the situation. In addition, please collect the following command output from the affected Bitbucket repository:

GIT_NOTES_REF=refs/svn/map git log --format="%H %N" --all --tags ^refs/svn/map

and also collect the SVN Mirror logs in the add-on UI.

The date of the first commit difference in SVN and Git may indicate that there was a non-SVN move/renaming in the history – in such a case SVN Mirror add-on has no means to find out that the commits belong to the same branch and that’s why the history in Git starts from the very first commit after the renaming. The earlier commits are still there, the add-on imports the to Git as well, only they are not being shown in the git log output. To fix such a history issue both old and new names must be present in the mapping, this way the add-on will be able to glue the branch history.

Hi Ildar,

The command fails to run in the affected Git repository with the following error.

GIT_NOTES_REF=refs/svn/map git log --format=“%H %N” --all --tags ^refs/svn/map

fatal: bad revision ‘^refs/svn/map’

Do we need to add anything else to this command?

Also this migration happened 6 months ago and I am afraid I do not have the logs at this moment.

I also realised that the trunk branch was deleted in a revision and added in the next revision.

Let us consider the trunk branch revisions here. The total revisions in trunk branch as per svn log is 1011.

There were 582 commits until the trunk was deleted in the revision number r21598.

The trunk was added in the next revision number r21599. There are 427 revisions in SVN from revision r21599 (after trunk is added).

However the Bitbucket repo has 475 commits which starts with the commit that is mapped with r21599 revision on SVN (when the trunk was added).

The count 475 on Bitbucket (total commits) does not match with the revisions count 427 on SVN repo since trunk has been added again.

What are the possible ways to debug the count mismatch?

Thanks,
Sitaram

Hi Sitaram,

it seems I forgot to mention that this command should be used in the repository directory right on the Bitbucket server, it won’t work in a working copy directory, my apologies for this mistake.
Removing a branch and adding it back is another action that SVN Mirror add-on is not able to trace the history through, so it’s expected that the history in Git starts from the commit that matches r21599. As for the difference in commits count – that might be originated from the SVN and Git logs difference, but it’s hard to say for sure, we definitely would need the svn log and git log commands outputs along with the additional git log command mentioned in my previous message.

Hi Ildar,

The given command (GIT_NOTES_REF=refs/svn/map git log --format=“%H %N” --all --tags ^refs/svn/map) result shows a total of 2937 commits. Is this supposed to show all the commits of the whole repository? If so there is a huge difference in the total number of commits.

The actual revision count from the svn repository with the command
svn log -r HEAD:1 http://xxxxxxxx/svn/build/ | grep “^r[0-9]”
returns a total of 6924 revisions and I have verified these revisions.

The second question is can the history (that comes with your command) be seen on the commits section of the repository? If so, how can we get that done?

Thanks,
Sitaram

Hello Sitaram,

this command supposed to show git log along with the git notes that SVN Mirror writes during SVN-to-Git translation which is very helpful information for the investigation. It’s not that some of that commands we mentioned should return some number of commits that would match with other numbers, all those commands are supposed to collect information that should help to investigate how the import went and what is the current situation, and I’m afraid it’s hardly possible to make any conclusions having only numbers of commits the commands return, we need the outputs themselves to investigate.
The commits section in the repository UI in Bitbucket is being generated by Bitbucket itself, I’m not aware if there’s any way to customise this output.

Hi Ildar,

I want some clarity on “triggerGitGC = false/true”

What is the impact if we enable or disable “triggerGitGC” or remove the configuration completely?

We have completed importing the repositories and we still use SVN now and planning to move to Bitbucket completely in few weeks.
The repositories are being synced between SVN and Bitbucket.

Thanks,
Sitaram

Hi Sitaram,

this svn.triggerGitGC setting manages how SVN Mirror handles git garbage collection – it can be set to true, false, or to a number N which indicates how often the add-on will be triggering the GC. When the setting is true then the add-on will run git gc --auto every synchronisation – this will help making sure the repository is cleaned up and fresh all the time, but the drawback is that it takes some additional time during the synchronisation, and it may be noticeable time for a big repositories and changes.
When it’s false the add-on will not run GC at all thus not affecting the sync time, but the drawback here is that the repository is not being cleaned up. On the other hand, the GC can be triggered manually as a regular maintenance procedure, for example.
When it’s set to a number N the add-on will be triggering the GC every N revisions. Removing the setting will set it to default which is N=1000 meaning GC runs every 1000 revisions. This, probably, the best choice since the repository is still being handled by GC, but it does not affect the synchronization much. The N can be set greater than 1000 is it will be revealed that 1000 revisions is too often for a given repository – it may happen in a repository with high commiting rate.

Hope this will help.

Hi Ildar,

Thank you for the information. That helps.

I want to find out if we can use any other configuration to reduce the sync time.
The sync is taking about 15 minutes each time even though there are no new revisions on svn.

Can you please help on the same?

Thanks,
Sitaram

Hi Sitaram,

there are severals settings that could affect synchronisation time, we have an article that describes most of them:

TMate SubGit: Frequently asked questions

The article mostly refers to the initial translation, but regular synchronisations are affected in the same way so it’s applicable to both kinds of synchronisation.
The key thing here is to find out what exactly cause the long sync since the causes may vary. I would suggest to catch a couple of occurrences of this behaviour and then collect SVN Mirror logs from this repositories, it would help us to understand what is happening there and determine possible ways to improve the situation.

Hi Ildar,

Please find the logs of three repositories. I will share the logs again as it exceeds the supported count of characters.

config-pecvd repository:

2022-12-07 08:15:32,071 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 08:15:32,201 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 08:15:32,487 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 08:15:32,487 sync -   added user name credentials: ChakiSa 
2022-12-07 08:15:32,487 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:19:04,977 sync - Restoring refs to reflect SVN state. 
2022-12-07 08:27:33,728 sync - Refs were successfully updated 
2022-12-07 08:27:33,781 sync - Location '1245' fetch completed, fetch took 721800 ms. 
2022-12-07 08:27:33,781 sync - Repository fetch completed, fetch took 721822 ms. 
2022-12-07 08:27:33,795 sync - about to refresh repository 
2022-12-07 08:27:34,356 sync - === 
2022-12-07 08:37:34,993 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 08:37:35,448 sync - Repository fetch started. 
2022-12-07 08:37:35,547 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 08:37:35,547 sync -   added user name credentials: ChakiSa 
2022-12-07 08:37:35,547 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:37:35,568 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 08:37:35,786 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 08:37:35,871 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 08:37:35,915 sync -   added user name credentials: ChakiSa 
2022-12-07 08:37:35,915 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:41:12,216 sync - Restoring refs to reflect SVN state. 
2022-12-07 08:49:24,458 sync - Refs were successfully updated 
2022-12-07 08:49:24,720 sync - Location '1245' fetch completed, fetch took 709249 ms. 
2022-12-07 08:49:24,720 sync - Repository fetch completed, fetch took 709272 ms. 
2022-12-07 08:49:24,736 sync - about to refresh repository 
2022-12-07 08:49:25,280 sync - === 
2022-12-07 08:59:25,872 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 08:59:26,269 sync - Repository fetch started. 
2022-12-07 08:59:26,409 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 08:59:26,409 sync -   added user name credentials: ChakiSa 
2022-12-07 08:59:26,409 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:59:26,428 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 08:59:26,579 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 08:59:26,650 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 08:59:26,650 sync -   added user name credentials: ChakiSa 
2022-12-07 08:59:26,650 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:03:28,892 sync - Restoring refs to reflect SVN state. 
2022-12-07 09:11:41,334 sync - Refs were successfully updated 
2022-12-07 09:11:41,412 sync - Location '1245' fetch completed, fetch took 735122 ms. 
2022-12-07 09:11:41,412 sync - Repository fetch completed, fetch took 735143 ms. 
2022-12-07 09:11:41,427 sync - about to refresh repository 
2022-12-07 09:11:41,975 sync - === 
2022-12-07 09:21:43,134 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 09:21:43,752 sync - Repository fetch started. 
2022-12-07 09:21:44,208 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 09:21:44,208 sync -   added user name credentials: ChakiSa 
2022-12-07 09:21:44,208 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:21:44,225 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 09:21:44,494 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 09:21:44,573 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 09:21:44,573 sync -   added user name credentials: ChakiSa 
2022-12-07 09:21:44,573 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:25:55,084 sync - Restoring refs to reflect SVN state. 
2022-12-07 09:34:13,641 sync - Refs were successfully updated 
2022-12-07 09:34:13,667 sync - Location '1245' fetch completed, fetch took 749521 ms. 
2022-12-07 09:34:13,667 sync - Repository fetch completed, fetch took 749545 ms. 
2022-12-07 09:34:13,687 sync - about to refresh repository 
2022-12-07 09:34:14,315 sync - === 
2022-12-07 09:44:14,986 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 09:44:15,460 sync - Repository fetch started. 
2022-12-07 09:44:15,657 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 09:44:15,657 sync -   added user name credentials: ChakiSa 
2022-12-07 09:44:15,657 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:44:15,679 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 09:44:15,840 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 09:44:15,919 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 09:44:15,919 sync -   added user name credentials: ChakiSa 
2022-12-07 09:44:15,919 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:48:02,020 sync - Restoring refs to reflect SVN state. 
2022-12-07 09:56:38,938 sync - Refs were successfully updated 
2022-12-07 09:56:38,961 sync - Location '1245' fetch completed, fetch took 743400 ms. 
2022-12-07 09:56:38,961 sync - Repository fetch completed, fetch took 743421 ms. 
2022-12-07 09:56:38,982 sync - about to refresh repository 
2022-12-07 09:56:39,623 sync - === 
2022-12-07 10:06:40,274 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 10:06:40,724 sync - Repository fetch started. 
2022-12-07 10:06:41,160 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 10:06:41,160 sync -   added user name credentials: ChakiSa 
2022-12-07 10:06:41,160 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:06:41,196 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 10:06:41,415 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 10:06:41,482 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 10:06:41,482 sync -   added user name credentials: ChakiSa 
2022-12-07 10:06:41,482 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:09:40,940 sync - Restoring refs to reflect SVN state. 
2022-12-07 10:17:27,770 sync - Refs were successfully updated 
2022-12-07 10:17:27,799 sync - Location '1245' fetch completed, fetch took 646698 ms. 
2022-12-07 10:17:28,201 sync - Repository fetch completed, fetch took 647120 ms. 
2022-12-07 10:17:28,219 sync - about to refresh repository 
2022-12-07 10:17:28,799 sync - === 
2022-12-07 10:27:29,369 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 10:27:29,695 sync - Repository fetch started. 
2022-12-07 10:27:29,779 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 10:27:29,779 sync -   added user name credentials: ChakiSa 
2022-12-07 10:27:29,779 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:27:29,793 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 10:27:29,983 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 10:27:30,064 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 10:27:30,116 sync -   added user name credentials: ChakiSa 
2022-12-07 10:27:30,116 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:30:21,224 sync - Restoring refs to reflect SVN state. 
2022-12-07 10:39:07,638 sync - Refs were successfully updated 
2022-12-07 10:39:07,843 sync - Location '1245' fetch completed, fetch took 698126 ms. 
2022-12-07 10:39:07,854 sync - Repository fetch completed, fetch took 698159 ms. 
2022-12-07 10:39:07,870 sync - about to refresh repository 
2022-12-07 10:39:08,620 sync - === 
2022-12-07 10:49:09,298 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 10:49:09,749 sync - Repository fetch started. 
2022-12-07 10:49:09,850 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 10:49:09,924 sync -   added user name credentials: ChakiSa 
2022-12-07 10:49:09,924 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:49:09,945 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 10:49:10,114 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 10:49:10,264 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 10:49:10,341 sync -   added user name credentials: ChakiSa 
2022-12-07 10:49:10,341 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:52:28,487 sync - Restoring refs to reflect SVN state. 
2022-12-07 11:01:03,506 sync - Refs were successfully updated 
2022-12-07 11:01:03,570 sync - Location '1245' fetch completed, fetch took 713792 ms. 
2022-12-07 11:01:03,570 sync - Repository fetch completed, fetch took 713821 ms. 
2022-12-07 11:01:03,588 sync - about to refresh repository 
2022-12-07 11:01:05,461 sync - === 
2022-12-07 11:11:06,079 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 11:11:06,596 sync - Repository fetch started. 
2022-12-07 11:11:06,697 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 11:11:06,697 sync -   added user name credentials: ChakiSa 
2022-12-07 11:11:06,697 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:11:06,714 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 11:11:06,944 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 11:11:07,103 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 11:11:07,103 sync -   added user name credentials: ChakiSa 
2022-12-07 11:11:07,103 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:14:41,628 sync - Restoring refs to reflect SVN state. 
2022-12-07 11:23:09,630 sync - Refs were successfully updated 
2022-12-07 11:23:09,658 sync - Location '1245' fetch completed, fetch took 723040 ms. 
2022-12-07 11:23:09,658 sync - Repository fetch completed, fetch took 723062 ms. 
2022-12-07 11:23:09,671 sync - about to refresh repository 
2022-12-07 11:23:10,266 sync - === 
2022-12-07 11:33:10,970 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 11:33:11,430 sync - Repository fetch started. 
2022-12-07 11:33:11,515 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 11:33:11,515 sync -   added user name credentials: ChakiSa 
2022-12-07 11:33:11,515 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:33:11,531 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 11:33:11,733 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 11:33:11,861 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 11:33:11,915 sync -   added user name credentials: ChakiSa 
2022-12-07 11:33:11,915 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:36:29,465 sync - Restoring refs to reflect SVN state. 
2022-12-07 11:44:25,754 sync - Refs were successfully updated 
2022-12-07 11:44:25,778 sync - Location '1245' fetch completed, fetch took 674329 ms. 
2022-12-07 11:44:25,778 sync - Repository fetch completed, fetch took 674348 ms. 
2022-12-07 11:44:25,792 sync - about to refresh repository 
2022-12-07 11:44:26,467 sync - === 
2022-12-07 11:54:27,198 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 11:54:27,680 sync - Repository fetch started. 
2022-12-07 11:54:27,809 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 11:54:27,809 sync -   added user name credentials: ChakiSa 
2022-12-07 11:54:27,809 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:54:27,840 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 11:54:28,088 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 11:54:28,251 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 11:54:28,323 sync -   added user name credentials: ChakiSa 
2022-12-07 11:54:28,323 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:58:05,222 sync - Restoring refs to reflect SVN state. 
2022-12-07 12:06:06,166 sync - Refs were successfully updated 
2022-12-07 12:06:06,192 sync - Location '1245' fetch completed, fetch took 698490 ms. 
2022-12-07 12:06:06,192 sync - Repository fetch completed, fetch took 698512 ms. 
2022-12-07 12:06:06,206 sync - about to refresh repository 
2022-12-07 12:06:06,746 sync - === 
2022-12-07 12:16:07,382 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 12:16:07,800 sync - Repository fetch started. 
2022-12-07 12:16:07,903 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 12:16:07,903 sync -   added user name credentials: ChakiSa 
2022-12-07 12:16:07,903 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:16:07,921 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 12:16:08,208 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 12:16:08,274 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 12:16:08,274 sync -   added user name credentials: ChakiSa 
2022-12-07 12:16:08,274 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:19:17,244 sync - Restoring refs to reflect SVN state. 
2022-12-07 12:27:08,219 sync - Refs were successfully updated 
2022-12-07 12:27:08,242 sync - Location '1245' fetch completed, fetch took 660407 ms. 
2022-12-07 12:27:08,242 sync - Repository fetch completed, fetch took 660441 ms. 
2022-12-07 12:27:08,263 sync - about to refresh repository 
2022-12-07 12:27:08,803 sync - === 
2022-12-07 12:37:09,427 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 12:37:09,798 sync - Repository fetch started. 
2022-12-07 12:37:09,894 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 12:37:09,894 sync -   added user name credentials: ChakiSa 
2022-12-07 12:37:09,894 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:37:09,930 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 12:37:10,582 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 12:37:10,698 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 12:37:10,698 sync -   added user name credentials: ChakiSa 
2022-12-07 12:37:10,698 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:40:20,551 sync - Restoring refs to reflect SVN state. 
2022-12-07 12:48:21,050 sync - Refs were successfully updated 
2022-12-07 12:48:21,078 sync - Location '1245' fetch completed, fetch took 671260 ms. 
2022-12-07 12:48:21,078 sync - Repository fetch completed, fetch took 671280 ms. 
2022-12-07 12:48:21,091 sync - about to refresh repository 
2022-12-07 12:48:21,692 sync - === 
2022-12-07 12:58:22,295 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 12:58:22,729 sync - Repository fetch started. 
2022-12-07 12:58:23,145 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 12:58:23,145 sync -   added user name credentials: ChakiSa 
2022-12-07 12:58:23,145 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:58:23,166 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 12:58:23,434 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 12:58:23,535 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 12:58:23,535 sync -   added user name credentials: ChakiSa 
2022-12-07 12:58:23,535 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:01:48,341 sync - Restoring refs to reflect SVN state. 
2022-12-07 13:10:18,835 sync - Refs were successfully updated 
2022-12-07 13:10:19,269 sync - Location '1245' fetch completed, fetch took 716231 ms. 
2022-12-07 13:10:19,269 sync - Repository fetch completed, fetch took 716285 ms. 
2022-12-07 13:10:19,284 sync - about to refresh repository 
2022-12-07 13:10:19,946 sync - === 
2022-12-07 13:20:20,991 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 13:20:21,741 sync - Repository fetch started. 
2022-12-07 13:20:21,896 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 13:20:22,367 sync -   added user name credentials: ChakiSa 
2022-12-07 13:20:22,367 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:20:22,393 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 13:20:22,507 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 13:20:22,684 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 13:20:22,745 sync -   added user name credentials: ChakiSa 
2022-12-07 13:20:22,745 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:24:52,944 sync - Restoring refs to reflect SVN state. 
2022-12-07 13:32:57,779 sync - Refs were successfully updated 
2022-12-07 13:32:57,962 sync - Location '1245' fetch completed, fetch took 756171 ms. 
2022-12-07 13:32:57,962 sync - Repository fetch completed, fetch took 756221 ms. 
2022-12-07 13:32:57,978 sync - about to refresh repository 
2022-12-07 13:32:58,767 sync - === 
2022-12-07 13:42:59,347 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 13:42:59,783 sync - Repository fetch started. 
2022-12-07 13:42:59,891 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 13:42:59,891 sync -   added user name credentials: ChakiSa 
2022-12-07 13:42:59,891 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:42:59,920 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 13:43:00,089 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 13:43:00,160 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 13:43:00,361 sync -   added user name credentials: ChakiSa 
2022-12-07 13:43:00,361 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:46:00,373 sync - Restoring refs to reflect SVN state. 
2022-12-07 13:53:52,808 sync - Refs were successfully updated 
2022-12-07 13:53:52,833 sync - Location '1245' fetch completed, fetch took 653024 ms. 
2022-12-07 13:53:52,833 sync - Repository fetch completed, fetch took 653050 ms. 
2022-12-07 13:53:52,848 sync - about to refresh repository 
2022-12-07 13:53:53,474 sync - === 
2022-12-07 14:03:54,173 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 14:03:54,702 sync - Repository fetch started. 
2022-12-07 14:03:55,168 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 14:03:55,168 sync -   added user name credentials: ChakiSa 
2022-12-07 14:03:55,168 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:03:55,226 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 14:03:55,520 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 14:03:55,600 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 14:03:55,600 sync -   added user name credentials: ChakiSa 
2022-12-07 14:03:55,600 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:07:10,829 sync - Restoring refs to reflect SVN state. 
2022-12-07 14:15:25,984 sync - Refs were successfully updated 
2022-12-07 14:15:26,016 sync - Location '1245' fetch completed, fetch took 690922 ms. 
2022-12-07 14:15:26,016 sync - Repository fetch completed, fetch took 690965 ms. 
2022-12-07 14:15:26,030 sync - about to refresh repository 
2022-12-07 14:15:26,805 sync - === 
2022-12-07 14:25:27,346 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 14:25:27,789 sync - Repository fetch started. 
2022-12-07 14:25:27,873 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 14:25:27,873 sync -   added user name credentials: ChakiSa 
2022-12-07 14:25:27,873 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:25:27,890 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 14:25:28,198 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 14:25:28,262 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 14:25:28,262 sync -   added user name credentials: ChakiSa 
2022-12-07 14:25:28,262 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:28:25,180 sync - Restoring refs to reflect SVN state. 
2022-12-07 14:35:28,913 sync - Refs were successfully updated 
2022-12-07 14:35:28,983 sync - Location '1245' fetch completed, fetch took 601174 ms. 
2022-12-07 14:35:28,984 sync - Repository fetch completed, fetch took 601194 ms. 
2022-12-07 14:35:29,000 sync - about to refresh repository 
2022-12-07 14:35:29,515 sync - === 
2022-12-07 14:45:30,660 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 14:45:31,058 sync - Repository fetch started. 
2022-12-07 14:45:31,164 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 14:45:31,164 sync -   added user name credentials: ChakiSa 
2022-12-07 14:45:31,164 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:45:31,181 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 14:45:31,658 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 14:45:31,880 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 14:45:31,880 sync -   added user name credentials: ChakiSa 
2022-12-07 14:45:31,880 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:48:50,094 sync - Restoring refs to reflect SVN state. 
2022-12-07 14:56:38,173 sync - Refs were successfully updated 
2022-12-07 14:56:38,196 sync - Location '1245' fetch completed, fetch took 667115 ms. 
2022-12-07 14:56:38,196 sync - Repository fetch completed, fetch took 667138 ms. 
2022-12-07 14:56:38,212 sync - about to refresh repository 
2022-12-07 14:56:38,923 sync - === 
2022-12-07 15:06:39,556 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 15:06:39,947 sync - Repository fetch started. 
2022-12-07 15:06:40,064 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 15:06:40,064 sync -   added user name credentials: ChakiSa 
2022-12-07 15:06:40,064 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:06:40,084 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 15:06:40,324 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 15:06:40,445 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 15:06:40,516 sync -   added user name credentials: ChakiSa 
2022-12-07 15:06:40,604 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:10:27,681 sync - Restoring refs to reflect SVN state. 
2022-12-07 15:18:12,276 sync - Refs were successfully updated 
2022-12-07 15:18:12,298 sync - Location '1245' fetch completed, fetch took 692327 ms. 
2022-12-07 15:18:12,298 sync - Repository fetch completed, fetch took 692351 ms. 
2022-12-07 15:18:12,317 sync - about to refresh repository 
2022-12-07 15:18:13,084 sync - === 
2022-12-07 15:28:14,816 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 15:28:15,332 sync - Repository fetch started. 
2022-12-07 15:28:15,568 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 15:28:15,570 sync -   added user name credentials: ChakiSa 
2022-12-07 15:28:15,570 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:28:15,586 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 15:28:15,873 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 15:28:15,949 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 15:28:15,949 sync -   added user name credentials: ChakiSa 
2022-12-07 15:28:15,949 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:31:23,896 sync - Restoring refs to reflect SVN state. 
2022-12-07 15:38:58,418 sync - Refs were successfully updated 
2022-12-07 15:38:58,443 sync - Location '1245' fetch completed, fetch took 642945 ms. 
2022-12-07 15:38:58,443 sync - Repository fetch completed, fetch took 642980 ms. 
2022-12-07 15:38:58,462 sync - about to refresh repository 
2022-12-07 15:38:59,081 sync - === 
2022-12-07 15:48:59,630 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 15:49:00,497 sync - Repository fetch started. 
2022-12-07 15:49:00,582 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 15:49:00,582 sync -   added user name credentials: ChakiSa 
2022-12-07 15:49:00,582 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:49:00,597 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 15:49:00,955 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 15:49:01,129 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 15:49:01,129 sync -   added user name credentials: ChakiSa 
2022-12-07 15:49:01,129 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:52:13,649 sync - Restoring refs to reflect SVN state. 
2022-12-07 15:59:33,618 sync - Refs were successfully updated 
2022-12-07 15:59:33,641 sync - Location '1245' fetch completed, fetch took 633123 ms. 
2022-12-07 15:59:33,641 sync - Repository fetch completed, fetch took 633144 ms. 
2022-12-07 15:59:33,656 sync - about to refresh repository 
2022-12-07 15:59:34,234 sync - === 
2022-12-07 16:09:34,839 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 16:09:35,219 sync - Repository fetch started. 
2022-12-07 16:09:35,321 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 16:09:35,322 sync -   added user name credentials: ChakiSa 
2022-12-07 16:09:35,322 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:09:35,337 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 16:09:35,749 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 16:09:35,877 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 16:09:35,877 sync -   added user name credentials: ChakiSa 
2022-12-07 16:09:35,877 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:12:42,135 sync - Restoring refs to reflect SVN state. 
2022-12-07 16:21:08,109 sync - Refs were successfully updated 
2022-12-07 16:21:08,135 sync - Location '1245' fetch completed, fetch took 692897 ms. 
2022-12-07 16:21:08,135 sync - Repository fetch completed, fetch took 692916 ms. 
2022-12-07 16:21:08,150 sync - about to refresh repository 
2022-12-07 16:21:08,769 sync - === 
2022-12-07 16:31:09,387 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 16:31:09,855 sync - Repository fetch started. 
2022-12-07 16:31:10,000 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 16:31:10,000 sync -   added user name credentials: ChakiSa 
2022-12-07 16:31:10,000 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:31:10,018 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 16:31:10,436 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 16:31:10,546 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 16:31:10,546 sync -   added user name credentials: ChakiSa 
2022-12-07 16:31:10,546 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:34:19,820 sync - Restoring refs to reflect SVN state. 
2022-12-07 16:42:34,193 sync - Refs were successfully updated 
2022-12-07 16:42:34,223 sync - Location '1245' fetch completed, fetch took 684324 ms. 
2022-12-07 16:42:34,223 sync - Repository fetch completed, fetch took 684344 ms. 
2022-12-07 16:42:34,236 sync - about to refresh repository 
2022-12-07 16:42:34,881 sync - === 
2022-12-07 16:52:35,514 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 16:52:35,908 sync - Repository fetch started. 
2022-12-07 16:52:36,599 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 16:52:36,599 sync -   added user name credentials: ChakiSa 
2022-12-07 16:52:36,599 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:52:36,654 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 16:52:37,074 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 16:52:37,188 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 16:52:37,188 sync -   added user name credentials: ChakiSa 
2022-12-07 16:52:37,188 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:55:55,513 sync - Restoring refs to reflect SVN state. 
2022-12-07 17:04:05,891 sync - Refs were successfully updated 
2022-12-07 17:04:05,918 sync - Location '1245' fetch completed, fetch took 689389 ms. 
2022-12-07 17:04:05,918 sync - Repository fetch completed, fetch took 689430 ms. 
2022-12-07 17:04:05,933 sync - about to refresh repository 
2022-12-07 17:04:06,563 sync - === 
2022-12-07 17:14:07,264 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 17:14:07,783 sync - Repository fetch started. 
2022-12-07 17:14:07,897 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 17:14:07,898 sync -   added user name credentials: ChakiSa 
2022-12-07 17:14:07,898 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:14:07,916 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 17:14:08,326 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 17:14:08,445 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 17:14:08,445 sync -   added user name credentials: ChakiSa 
2022-12-07 17:14:08,445 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:17:24,698 sync - Restoring refs to reflect SVN state. 
2022-12-07 17:26:54,200 sync - Refs were successfully updated 
2022-12-07 17:26:54,240 sync - Location '1245' fetch completed, fetch took 766426 ms. 
2022-12-07 17:26:54,240 sync - Repository fetch completed, fetch took 766451 ms. 
2022-12-07 17:26:54,256 sync - about to refresh repository 
2022-12-07 17:26:54,899 sync - === 
2022-12-07 17:36:55,608 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 17:36:56,100 sync - Repository fetch started. 
2022-12-07 17:36:56,220 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 17:36:56,534 sync -   added user name credentials: ChakiSa 
2022-12-07 17:36:56,534 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:36:56,591 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 17:36:56,913 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 17:36:57,056 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 17:36:57,056 sync -   added user name credentials: ChakiSa 
2022-12-07 17:36:57,056 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:40:10,347 sync - Restoring refs to reflect SVN state. 
2022-12-07 17:47:50,282 sync - Refs were successfully updated 
2022-12-07 17:47:50,568 sync - Location '1245' fetch completed, fetch took 654423 ms. 
2022-12-07 17:47:50,569 sync - Repository fetch completed, fetch took 654448 ms. 
2022-12-07 17:47:50,587 sync - about to refresh repository 
2022-12-07 17:47:51,200 sync - === 
2022-12-07 17:57:51,949 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 17:57:52,359 sync - Repository fetch started. 
2022-12-07 17:57:52,454 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 17:57:52,454 sync -   added user name credentials: ChakiSa 
2022-12-07 17:57:52,454 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:57:52,476 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 17:57:52,953 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 17:57:53,096 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 17:57:53,159 sync -   added user name credentials: ChakiSa 
2022-12-07 17:57:53,159 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:01:34,792 sync - Restoring refs to reflect SVN state. 
2022-12-07 18:10:52,236 sync - Refs were successfully updated 
2022-12-07 18:10:52,302 sync - Location '1245' fetch completed, fetch took 779916 ms. 
2022-12-07 18:10:52,302 sync - Repository fetch completed, fetch took 779943 ms. 
2022-12-07 18:10:52,317 sync - about to refresh repository 
2022-12-07 18:10:53,202 sync - === 
2022-12-07 18:20:53,924 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 18:20:54,421 sync - Repository fetch started. 
2022-12-07 18:20:54,525 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 18:20:54,525 sync -   added user name credentials: ChakiSa 
2022-12-07 18:20:54,525 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:20:54,541 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 18:20:54,967 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 18:20:55,235 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 18:20:55,235 sync -   added user name credentials: ChakiSa 
2022-12-07 18:20:55,235 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:24:35,995 sync - Restoring refs to reflect SVN state. 
2022-12-07 18:33:35,734 sync - Refs were successfully updated 
2022-12-07 18:33:36,110 sync - Location '1245' fetch completed, fetch took 761665 ms. 
2022-12-07 18:33:36,110 sync - Repository fetch completed, fetch took 761689 ms. 
2022-12-07 18:33:36,125 sync - about to refresh repository 
2022-12-07 18:33:36,801 sync - === 
2022-12-07 18:43:37,514 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 18:43:37,933 sync - Repository fetch started. 
2022-12-07 18:43:38,018 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 18:43:38,018 sync -   added user name credentials: ChakiSa 
2022-12-07 18:43:38,018 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:43:38,033 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 18:43:38,438 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 18:43:38,627 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 18:43:38,743 sync -   added user name credentials: ChakiSa 
2022-12-07 18:43:38,743 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:46:55,543 sync - Restoring refs to reflect SVN state. 
2022-12-07 18:55:12,704 sync - Refs were successfully updated 
2022-12-07 18:55:12,727 sync - Location '1245' fetch completed, fetch took 694773 ms. 
2022-12-07 18:55:12,727 sync - Repository fetch completed, fetch took 694794 ms. 
2022-12-07 18:55:12,743 sync - about to refresh repository 
2022-12-07 18:55:13,296 sync - === 
2022-12-07 19:05:15,156 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 19:05:15,871 sync - Repository fetch started. 
2022-12-07 19:05:16,129 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 19:05:16,381 sync -   added user name credentials: ChakiSa 
2022-12-07 19:05:16,381 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:05:16,406 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 19:05:16,664 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 19:05:17,168 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 19:05:17,168 sync -   added user name credentials: ChakiSa 
2022-12-07 19:05:17,168 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:08:46,575 sync - Restoring refs to reflect SVN state. 
2022-12-07 19:17:26,509 sync - Refs were successfully updated 
2022-12-07 19:17:26,535 sync - Location '1245' fetch completed, fetch took 730503 ms. 
2022-12-07 19:17:26,535 sync - Repository fetch completed, fetch took 730531 ms. 
2022-12-07 19:17:26,567 sync - about to refresh repository 
2022-12-07 19:17:27,370 sync - === 
2022-12-07 19:27:27,997 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 19:27:28,431 sync - Repository fetch started. 
2022-12-07 19:27:28,527 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 19:27:28,527 sync -   added user name credentials: ChakiSa 
2022-12-07 19:27:28,527 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:27:28,545 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 19:27:29,009 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 19:27:29,160 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 19:27:29,218 sync -   added user name credentials: ChakiSa 
2022-12-07 19:27:29,218 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:31:01,621 sync - Restoring refs to reflect SVN state. 
2022-12-07 19:39:39,050 sync - Refs were successfully updated 
2022-12-07 19:39:39,079 sync - Location '1245' fetch completed, fetch took 730626 ms. 
2022-12-07 19:39:39,079 sync - Repository fetch completed, fetch took 730648 ms. 
2022-12-07 19:39:39,094 sync - about to refresh repository 
2022-12-07 19:39:39,688 sync - === 
2022-12-07 19:49:40,214 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 19:49:40,614 sync - Repository fetch started. 
2022-12-07 19:49:40,722 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 19:49:40,722 sync -   added user name credentials: ChakiSa 
2022-12-07 19:49:40,722 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:49:40,740 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 19:49:41,034 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 19:49:41,166 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 19:49:41,219 sync -   added user name credentials: ChakiSa 
2022-12-07 19:49:41,219 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:52:53,150 sync - Restoring refs to reflect SVN state. 
2022-12-07 20:00:58,123 sync - Refs were successfully updated 
2022-12-07 20:00:58,150 sync - Location '1245' fetch completed, fetch took 677504 ms. 
2022-12-07 20:00:58,150 sync - Repository fetch completed, fetch took 677535 ms. 
2022-12-07 20:00:58,168 sync - about to refresh repository 
2022-12-07 20:00:58,788 sync - === 
2022-12-07 20:11:00,808 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 20:11:01,636 sync - Repository fetch started. 
2022-12-07 20:11:02,035 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 20:11:02,035 sync -   added user name credentials: ChakiSa 
2022-12-07 20:11:02,035 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:11:02,083 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 20:11:02,570 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 20:11:02,895 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 20:11:02,991 sync -   added user name credentials: ChakiSa 
2022-12-07 20:11:03,060 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:14:52,006 sync - Restoring refs to reflect SVN state. 
2022-12-07 20:23:58,682 sync - Refs were successfully updated 
2022-12-07 20:23:58,708 sync - Location '1245' fetch completed, fetch took 776883 ms. 
2022-12-07 20:23:58,708 sync - Repository fetch completed, fetch took 776923 ms. 
2022-12-07 20:23:58,722 sync - about to refresh repository 
2022-12-07 20:23:59,637 sync - === 
2022-12-07 20:34:00,463 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 20:34:01,047 sync - Repository fetch started. 
2022-12-07 20:34:01,426 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 20:34:01,496 sync -   added user name credentials: ChakiSa 
2022-12-07 20:34:01,560 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:34:01,602 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 20:34:02,061 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 20:34:02,444 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 20:34:02,498 sync -   added user name credentials: ChakiSa 
2022-12-07 20:34:02,498 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:37:59,527 sync - Restoring refs to reflect SVN state. 
2022-12-07 20:47:15,367 sync - Refs were successfully updated 
2022-12-07 20:47:15,391 sync - Location '1245' fetch completed, fetch took 794261 ms. 
2022-12-07 20:47:15,391 sync - Repository fetch completed, fetch took 794344 ms. 
2022-12-07 20:47:15,406 sync - about to refresh repository 
2022-12-07 20:47:16,157 sync - === 
2022-12-07 20:57:16,904 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 20:57:17,293 sync - Repository fetch started. 
2022-12-07 20:57:17,404 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 20:57:17,501 sync -   added user name credentials: ChakiSa 
2022-12-07 20:57:17,501 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:57:17,517 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 20:57:17,948 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 20:57:18,121 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 20:57:18,204 sync -   added user name credentials: ChakiSa 
2022-12-07 20:57:18,204 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:01:11,355 sync - Restoring refs to reflect SVN state. 
2022-12-07 21:10:12,668 sync - Refs were successfully updated 
2022-12-07 21:10:12,692 sync - Location '1245' fetch completed, fetch took 775379 ms. 
2022-12-07 21:10:12,692 sync - Repository fetch completed, fetch took 775399 ms. 
2022-12-07 21:10:12,719 sync - about to refresh repository 
2022-12-07 21:10:13,350 sync - === 
2022-12-07 21:20:15,406 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 21:20:16,005 sync - Repository fetch started. 
2022-12-07 21:20:16,349 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 21:20:16,616 sync -   added user name credentials: ChakiSa 
2022-12-07 21:20:16,616 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:20:16,633 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 21:20:17,086 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 21:20:17,287 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 21:20:17,287 sync -   added user name credentials: ChakiSa 
2022-12-07 21:20:17,287 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:25:06,570 sync - Restoring refs to reflect SVN state. 
2022-12-07 21:33:41,727 sync - Refs were successfully updated 
2022-12-07 21:33:41,753 sync - Location '1245' fetch completed, fetch took 805545 ms. 
2022-12-07 21:33:41,753 sync - Repository fetch completed, fetch took 805609 ms. 
2022-12-07 21:33:41,768 sync - about to refresh repository 
2022-12-07 21:33:42,433 sync - === 
2022-12-07 21:43:44,422 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 21:43:45,153 sync - Repository fetch started. 
2022-12-07 21:43:45,403 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 21:43:45,403 sync -   added user name credentials: ChakiSa 
2022-12-07 21:43:45,403 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:43:45,419 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 21:43:45,912 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 21:43:46,387 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 21:43:46,482 sync -   added user name credentials: ChakiSa 
2022-12-07 21:43:46,482 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:47:13,488 sync - Restoring refs to reflect SVN state. 
2022-12-07 21:56:58,246 sync - Refs were successfully updated 
2022-12-07 21:56:58,272 sync - Location '1245' fetch completed, fetch took 792944 ms. 
2022-12-07 21:56:58,272 sync - Repository fetch completed, fetch took 792979 ms. 
2022-12-07 21:56:58,287 sync - about to refresh repository 
2022-12-07 21:56:58,964 sync - === 
2022-12-07 22:06:59,803 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 22:07:00,302 sync - Repository fetch started. 
2022-12-07 22:07:00,432 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 22:07:00,432 sync -   added user name credentials: ChakiSa 
2022-12-07 22:07:00,432 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:07:00,452 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 22:07:00,902 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 22:07:01,175 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 22:07:01,196 sync -   added user name credentials: ChakiSa 
2022-12-07 22:07:01,196 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:10:58,109 sync - Restoring refs to reflect SVN state. 
2022-12-07 22:21:15,034 sync - Refs were successfully updated 
2022-12-07 22:21:15,097 sync - Location '1245' fetch completed, fetch took 854752 ms. 
2022-12-07 22:21:15,097 sync - Repository fetch completed, fetch took 854795 ms. 
2022-12-07 22:21:15,113 sync - about to refresh repository 
2022-12-07 22:21:15,904 sync - === 
2022-12-07 22:31:16,453 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 22:31:16,856 sync - Repository fetch started. 
2022-12-07 22:31:16,989 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 22:31:16,989 sync -   added user name credentials: ChakiSa 
2022-12-07 22:31:16,989 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:31:17,027 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 22:31:17,348 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 22:31:17,513 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 22:31:17,569 sync -   added user name credentials: ChakiSa 
2022-12-07 22:31:17,569 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:34:10,689 sync - Restoring refs to reflect SVN state. 
2022-12-07 22:42:42,973 sync - Refs were successfully updated 
2022-12-07 22:42:43,036 sync - Location '1245' fetch completed, fetch took 686138 ms. 
2022-12-07 22:42:43,373 sync - Repository fetch completed, fetch took 686497 ms. 
2022-12-07 22:42:43,387 sync - about to refresh repository 
2022-12-07 22:42:44,049 sync - === 
2022-12-07 22:52:44,927 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 22:52:45,749 sync - Repository fetch started. 
2022-12-07 22:52:45,883 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 22:52:45,883 sync -   added user name credentials: ChakiSa 
2022-12-07 22:52:45,883 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:52:45,964 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 22:52:46,337 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 22:52:46,420 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 22:52:46,420 sync -   added user name credentials: ChakiSa 
2022-12-07 22:52:46,420 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:57:26,053 sync - Restoring refs to reflect SVN state. 
2022-12-07 23:06:11,864 sync - Refs were successfully updated 
2022-12-07 23:06:11,896 sync - Location '1245' fetch completed, fetch took 806111 ms. 
2022-12-07 23:06:11,896 sync - Repository fetch completed, fetch took 806146 ms. 
2022-12-07 23:06:11,910 sync - about to refresh repository 
2022-12-07 23:06:12,740 sync - === 
2022-12-07 23:16:13,507 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 23:16:14,032 sync - Repository fetch started. 
2022-12-07 23:16:14,147 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 23:16:14,147 sync -   added user name credentials: ChakiSa 
2022-12-07 23:16:14,147 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:16:14,186 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 23:16:14,745 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 23:16:14,821 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 23:16:14,879 sync -   added user name credentials: ChakiSa 
2022-12-07 23:16:14,879 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:19:55,802 sync - Restoring refs to reflect SVN state. 
2022-12-07 23:28:13,127 sync - Refs were successfully updated 
2022-12-07 23:28:13,148 sync - Location '1245' fetch completed, fetch took 719091 ms. 
2022-12-07 23:28:13,148 sync - Repository fetch completed, fetch took 719116 ms. 
2022-12-07 23:28:13,164 sync - about to refresh repository 
2022-12-07 23:28:14,062 sync - === 
2022-12-07 23:38:14,764 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 23:38:15,482 sync - Repository fetch started. 
2022-12-07 23:38:15,593 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 23:38:15,593 sync -   added user name credentials: ChakiSa 
2022-12-07 23:38:15,593 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:38:15,612 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 23:38:16,987 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 23:38:17,136 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 23:38:17,136 sync -   added user name credentials: ChakiSa 
2022-12-07 23:38:17,219 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:41:38,336 sync - Restoring refs to reflect SVN state. 
2022-12-07 23:49:22,865 sync - Refs were successfully updated 
2022-12-07 23:49:22,890 sync - Location '1245' fetch completed, fetch took 667372 ms. 
2022-12-07 23:49:22,890 sync - Repository fetch completed, fetch took 667407 ms. 
2022-12-07 23:49:22,905 sync - about to refresh repository 
2022-12-07 23:49:23,479 sync - === 
2022-12-07 23:59:24,236 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 23:59:24,777 sync - Repository fetch started. 
2022-12-07 23:59:24,881 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 23:59:25,173 sync -   added user name credentials: ChakiSa 
2022-12-07 23:59:25,173 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:59:25,212 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-07 23:59:25,542 sync - Revisions: <fetched=85118; last=85118> 
2022-12-07 23:59:25,606 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-07 23:59:25,607 sync -   added user name credentials: ChakiSa 
2022-12-07 23:59:25,607 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:02:40,220 sync - Restoring refs to reflect SVN state. 
2022-12-08 00:11:42,043 sync - Refs were successfully updated 
2022-12-08 00:11:42,408 sync - Location '1245' fetch completed, fetch took 737611 ms. 
2022-12-08 00:11:42,408 sync - Repository fetch completed, fetch took 737631 ms. 
2022-12-08 00:11:42,426 sync - about to refresh repository 
2022-12-08 00:11:43,043 sync - === 
2022-12-08 00:21:43,634 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 00:21:44,134 sync - Repository fetch started. 
2022-12-08 00:21:44,226 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 00:21:44,226 sync -   added user name credentials: ChakiSa 
2022-12-08 00:21:44,226 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:21:44,263 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-08 00:21:44,775 sync - Revisions: <fetched=85118; last=85118> 
2022-12-08 00:21:45,046 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 00:21:45,046 sync -   added user name credentials: ChakiSa 
2022-12-08 00:21:45,046 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:25:04,948 sync - Restoring refs to reflect SVN state. 
2022-12-08 00:33:35,654 sync - Refs were successfully updated 
2022-12-08 00:33:35,898 sync - Location '1245' fetch completed, fetch took 711741 ms. 
2022-12-08 00:33:35,898 sync - Repository fetch completed, fetch took 711762 ms. 
2022-12-08 00:33:35,915 sync - about to refresh repository 
2022-12-08 00:33:36,480 sync - === 
2022-12-08 00:43:37,056 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 00:43:37,454 sync - Repository fetch started. 
2022-12-08 00:43:37,554 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 00:43:37,554 sync -   added user name credentials: ChakiSa 
2022-12-08 00:43:37,554 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:43:37,573 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-08 00:43:38,205 sync - Revisions: <fetched=85118; last=85118> 
2022-12-08 00:43:38,334 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 00:43:38,391 sync -   added user name credentials: ChakiSa 
2022-12-08 00:43:38,391 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:46:59,905 sync - Restoring refs to reflect SVN state. 
2022-12-08 00:55:14,730 sync - Refs were successfully updated 
2022-12-08 00:55:15,030 sync - Location '1245' fetch completed, fetch took 697553 ms. 
2022-12-08 00:55:15,030 sync - Repository fetch completed, fetch took 697576 ms. 
2022-12-08 00:55:15,046 sync - about to refresh repository 
2022-12-08 00:55:15,668 sync - === 
2022-12-08 01:05:16,354 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 01:05:16,784 sync - Repository fetch started. 
2022-12-08 01:05:16,892 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 01:05:16,919 sync -   added user name credentials: ChakiSa 
2022-12-08 01:05:16,919 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:05:16,952 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-08 01:05:17,280 sync - Revisions: <fetched=85118; last=85118> 
2022-12-08 01:05:17,413 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 01:05:17,556 sync -   added user name credentials: ChakiSa 
2022-12-08 01:05:17,556 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:08:25,027 sync - Restoring refs to reflect SVN state. 
2022-12-08 01:16:12,717 sync - Refs were successfully updated 
2022-12-08 01:16:12,756 sync - Location '1245' fetch completed, fetch took 655940 ms. 
2022-12-08 01:16:12,805 sync - Repository fetch completed, fetch took 656021 ms. 
2022-12-08 01:16:12,822 sync - about to refresh repository 
2022-12-08 01:16:13,441 sync - === 
2022-12-08 01:26:14,406 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 01:26:15,197 sync - Repository fetch started. 
2022-12-08 01:26:15,522 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 01:26:15,591 sync -   added user name credentials: ChakiSa 
2022-12-08 01:26:15,652 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:26:15,679 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-08 01:26:16,284 sync - Revisions: <fetched=85118; last=85118> 
2022-12-08 01:26:16,403 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 01:26:16,801 sync -   added user name credentials: ChakiSa 
2022-12-08 01:26:16,801 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:29:38,524 sync - Restoring refs to reflect SVN state. 
2022-12-08 01:37:08,483 sync - Refs were successfully updated 
2022-12-08 01:37:08,691 sync - Location '1245' fetch completed, fetch took 653332 ms. 
2022-12-08 01:37:08,691 sync - Repository fetch completed, fetch took 653406 ms. 
2022-12-08 01:37:08,712 sync - about to refresh repository 
2022-12-08 01:37:09,356 sync - === 
2022-12-08 01:47:10,038 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 01:47:10,515 sync - Repository fetch started. 
2022-12-08 01:47:10,636 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 01:47:10,656 sync -   added user name credentials: ChakiSa 
2022-12-08 01:47:10,656 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:47:10,708 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-08 01:47:11,021 sync - Revisions: <fetched=85118; last=85118> 
2022-12-08 01:47:11,149 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 01:47:11,231 sync -   added user name credentials: ChakiSa 
2022-12-08 01:47:11,231 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:50:47,344 sync - Restoring refs to reflect SVN state. 
2022-12-08 01:59:34,544 sync - Refs were successfully updated 
2022-12-08 01:59:34,572 sync - Location '1245' fetch completed, fetch took 744034 ms. 
2022-12-08 01:59:34,572 sync - Repository fetch completed, fetch took 744057 ms. 
2022-12-08 01:59:34,587 sync - about to refresh repository 
2022-12-08 01:59:35,277 sync - === 
2022-12-08 02:09:35,874 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 02:09:36,431 sync - Repository fetch started. 
2022-12-08 02:09:36,524 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 02:09:36,524 sync -   added user name credentials: ChakiSa 
2022-12-08 02:09:36,524 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:09:36,557 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-08 02:09:36,761 sync - Revisions: <fetched=85118; last=85118> 
2022-12-08 02:09:36,917 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 02:09:37,001 sync -   added user name credentials: ChakiSa 
2022-12-08 02:09:37,001 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:13:10,336 sync - Restoring refs to reflect SVN state. 
2022-12-08 02:21:18,207 sync - Refs were successfully updated 
2022-12-08 02:21:18,236 sync - Location '1245' fetch completed, fetch took 701782 ms. 
2022-12-08 02:21:18,236 sync - Repository fetch completed, fetch took 701805 ms. 
2022-12-08 02:21:18,255 sync - about to refresh repository 
2022-12-08 02:21:18,870 sync - === 
2022-12-08 02:31:19,471 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 02:31:19,870 sync - Repository fetch started. 
2022-12-08 02:31:19,986 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 02:31:19,986 sync -   added user name credentials: ChakiSa 
2022-12-08 02:31:19,986 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:31:20,010 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-08 02:31:20,264 sync - Revisions: <fetched=85118; last=85118> 
2022-12-08 02:31:20,335 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 02:31:20,387 sync -   added user name credentials: ChakiSa 
2022-12-08 02:31:20,387 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:34:27,183 sync - Restoring refs to reflect SVN state. 
2022-12-08 02:41:59,865 sync - Refs were successfully updated 
2022-12-08 02:41:59,926 sync - Location '1245' fetch completed, fetch took 640029 ms. 
2022-12-08 02:41:59,926 sync - Repository fetch completed, fetch took 640056 ms. 
2022-12-08 02:41:59,945 sync - about to refresh repository 
2022-12-08 02:42:00,901 sync - === 
2022-12-08 02:52:02,159 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 02:52:03,476 sync - Repository fetch started. 
2022-12-08 02:52:04,010 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 02:52:04,010 sync -   added user name credentials: ChakiSa 
2022-12-08 02:52:04,069 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:52:04,165 sync - Checking remote 'http://yyyy.com/svn/config/config-pecvd'. 
2022-12-08 02:52:04,389 sync - Revisions: <fetched=85118; last=85118> 
2022-12-08 02:52:04,722 sync - svn authentication manager for ''http://yyyy.com/svn/config/config-pecvd'' 
2022-12-08 02:52:04,722 sync -   added user name credentials: ChakiSa 
2022-12-08 02:52:04,722 sync -   explicit user name credentials: ChakiSa 

Thanks,
Sitaram

The logs of src repository.

2022-12-06 23:39:08,790 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-06 23:39:08,817 sync -   added user name credentials: ChakiSa 
2022-12-06 23:39:08,817 sync -   explicit user name credentials: ChakiSa 
2022-12-06 23:39:08,833 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-06 23:39:09,154 sync - Revisions: <fetched=85119; last=85119> 
2022-12-06 23:39:09,268 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-06 23:39:09,344 sync -   added user name credentials: ChakiSa 
2022-12-06 23:39:09,344 sync -   explicit user name credentials: ChakiSa 
2022-12-06 23:42:38,570 sync - Restoring refs to reflect SVN state. 
2022-12-06 23:51:20,466 sync - Refs were successfully updated 
2022-12-06 23:51:20,490 sync - Location '1244' fetch completed, fetch took 731812 ms. 
2022-12-06 23:51:20,490 sync - Repository fetch completed, fetch took 731835 ms. 
2022-12-06 23:51:20,504 sync - about to refresh repository 
2022-12-06 23:51:21,094 sync - === 
2022-12-07 00:01:21,694 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 00:01:22,079 sync - Repository fetch started. 
2022-12-07 00:01:22,288 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 00:01:22,373 sync -   added user name credentials: ChakiSa 
2022-12-07 00:01:22,373 sync -   explicit user name credentials: ChakiSa 
2022-12-07 00:01:22,388 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 00:01:22,446 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 00:01:22,521 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 00:01:22,521 sync -   added user name credentials: ChakiSa 
2022-12-07 00:01:22,521 sync -   explicit user name credentials: ChakiSa 
2022-12-07 00:05:29,435 sync - Restoring refs to reflect SVN state. 
2022-12-07 00:14:07,733 sync - Refs were successfully updated 
2022-12-07 00:14:08,081 sync - Location '1244' fetch completed, fetch took 765871 ms. 
2022-12-07 00:14:08,085 sync - Repository fetch completed, fetch took 765922 ms. 
2022-12-07 00:14:08,327 sync - about to refresh repository 
2022-12-07 00:14:08,807 sync - === 
2022-12-07 00:24:09,404 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 00:24:09,827 sync - Repository fetch started. 
2022-12-07 00:24:09,948 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 00:24:09,968 sync -   added user name credentials: ChakiSa 
2022-12-07 00:24:09,968 sync -   explicit user name credentials: ChakiSa 
2022-12-07 00:24:09,984 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 00:24:10,068 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 00:24:10,145 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 00:24:10,184 sync -   added user name credentials: ChakiSa 
2022-12-07 00:24:10,184 sync -   explicit user name credentials: ChakiSa 
2022-12-07 00:28:01,089 sync - Restoring refs to reflect SVN state. 
2022-12-07 00:37:35,778 sync - Refs were successfully updated 
2022-12-07 00:37:35,848 sync - Location '1244' fetch completed, fetch took 805993 ms. 
2022-12-07 00:37:35,848 sync - Repository fetch completed, fetch took 806021 ms. 
2022-12-07 00:37:35,863 sync - about to refresh repository 
2022-12-07 00:37:36,536 sync - === 
2022-12-07 00:47:37,294 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 00:47:37,776 sync - Repository fetch started. 
2022-12-07 00:47:37,953 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 00:47:37,999 sync -   added user name credentials: ChakiSa 
2022-12-07 00:47:37,999 sync -   explicit user name credentials: ChakiSa 
2022-12-07 00:47:38,047 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 00:47:38,494 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 00:47:38,583 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 00:47:38,583 sync -   added user name credentials: ChakiSa 
2022-12-07 00:47:38,583 sync -   explicit user name credentials: ChakiSa 
2022-12-07 00:51:55,115 sync - Restoring refs to reflect SVN state. 
2022-12-07 01:02:06,451 sync - Refs were successfully updated 
2022-12-07 01:02:06,696 sync - Location '1244' fetch completed, fetch took 868900 ms. 
2022-12-07 01:02:06,696 sync - Repository fetch completed, fetch took 868920 ms. 
2022-12-07 01:02:06,710 sync - about to refresh repository 
2022-12-07 01:02:07,416 sync - === 
2022-12-07 01:12:08,146 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 01:12:08,655 sync - Repository fetch started. 
2022-12-07 01:12:08,901 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 01:12:08,955 sync -   added user name credentials: ChakiSa 
2022-12-07 01:12:08,955 sync -   explicit user name credentials: ChakiSa 
2022-12-07 01:12:08,973 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 01:12:09,247 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 01:12:09,364 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 01:12:09,366 sync -   added user name credentials: ChakiSa 
2022-12-07 01:12:09,366 sync -   explicit user name credentials: ChakiSa 
2022-12-07 01:16:33,631 sync - Restoring refs to reflect SVN state. 
2022-12-07 01:27:28,218 sync - Refs were successfully updated 
2022-12-07 01:27:28,247 sync - Location '1244' fetch completed, fetch took 919497 ms. 
2022-12-07 01:27:28,247 sync - Repository fetch completed, fetch took 919542 ms. 
2022-12-07 01:27:28,264 sync - about to refresh repository 
2022-12-07 01:27:28,886 sync - === 
2022-12-07 01:37:29,663 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 01:37:30,222 sync - Repository fetch started. 
2022-12-07 01:37:30,505 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 01:37:30,542 sync -   added user name credentials: ChakiSa 
2022-12-07 01:37:30,542 sync -   explicit user name credentials: ChakiSa 
2022-12-07 01:37:30,556 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 01:37:30,636 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 01:37:30,714 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 01:37:30,714 sync -   added user name credentials: ChakiSa 
2022-12-07 01:37:30,714 sync -   explicit user name credentials: ChakiSa 
2022-12-07 01:42:12,780 sync - Restoring refs to reflect SVN state. 
2022-12-07 01:50:48,768 sync - Refs were successfully updated 
2022-12-07 01:50:48,792 sync - Location '1244' fetch completed, fetch took 798374 ms. 
2022-12-07 01:50:48,792 sync - Repository fetch completed, fetch took 798407 ms. 
2022-12-07 01:50:48,810 sync - about to refresh repository 
2022-12-07 01:50:49,427 sync - === 
2022-12-07 02:00:50,054 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 02:00:50,501 sync - Repository fetch started. 
2022-12-07 02:00:50,593 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 02:00:50,593 sync -   added user name credentials: ChakiSa 
2022-12-07 02:00:50,593 sync -   explicit user name credentials: ChakiSa 
2022-12-07 02:00:50,607 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 02:00:50,846 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 02:00:50,921 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 02:00:50,969 sync -   added user name credentials: ChakiSa 
2022-12-07 02:00:50,969 sync -   explicit user name credentials: ChakiSa 
2022-12-07 02:04:08,275 sync - Restoring refs to reflect SVN state. 
2022-12-07 02:14:42,926 sync - Refs were successfully updated 
2022-12-07 02:14:42,972 sync - Location '1244' fetch completed, fetch took 832447 ms. 
2022-12-07 02:14:42,972 sync - Repository fetch completed, fetch took 832471 ms. 
2022-12-07 02:14:42,989 sync - about to refresh repository 
2022-12-07 02:14:43,584 sync - === 
2022-12-07 02:24:44,929 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 02:24:45,471 sync - Repository fetch started. 
2022-12-07 02:24:45,618 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 02:24:45,618 sync -   added user name credentials: ChakiSa 
2022-12-07 02:24:45,618 sync -   explicit user name credentials: ChakiSa 
2022-12-07 02:24:45,634 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 02:24:45,842 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 02:24:46,053 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 02:24:46,181 sync -   added user name credentials: ChakiSa 
2022-12-07 02:24:46,181 sync -   explicit user name credentials: ChakiSa 
2022-12-07 02:28:28,327 sync - Restoring refs to reflect SVN state. 
2022-12-07 02:38:13,157 sync - Refs were successfully updated 
2022-12-07 02:38:13,327 sync - Location '1244' fetch completed, fetch took 807810 ms. 
2022-12-07 02:38:13,327 sync - Repository fetch completed, fetch took 807856 ms. 
2022-12-07 02:38:13,344 sync - about to refresh repository 
2022-12-07 02:38:13,997 sync - === 
2022-12-07 02:48:14,648 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 02:48:15,301 sync - Repository fetch started. 
2022-12-07 02:48:15,392 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 02:48:15,392 sync -   added user name credentials: ChakiSa 
2022-12-07 02:48:15,392 sync -   explicit user name credentials: ChakiSa 
2022-12-07 02:48:15,409 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 02:48:15,926 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 02:48:15,990 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 02:48:15,990 sync -   added user name credentials: ChakiSa 
2022-12-07 02:48:15,990 sync -   explicit user name credentials: ChakiSa 
2022-12-07 02:52:15,100 sync - Restoring refs to reflect SVN state. 
2022-12-07 03:01:47,734 sync - Refs were successfully updated 
2022-12-07 03:01:47,954 sync - Location '1244' fetch completed, fetch took 812634 ms. 
2022-12-07 03:01:47,954 sync - Repository fetch completed, fetch took 812653 ms. 
2022-12-07 03:01:47,970 sync - about to refresh repository 
2022-12-07 03:01:48,531 sync - === 
2022-12-07 03:11:49,112 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 03:11:49,534 sync - Repository fetch started. 
2022-12-07 03:11:49,670 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 03:11:49,817 sync -   added user name credentials: ChakiSa 
2022-12-07 03:11:49,817 sync -   explicit user name credentials: ChakiSa 
2022-12-07 03:11:49,834 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 03:11:49,968 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 03:11:50,027 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 03:11:50,027 sync -   added user name credentials: ChakiSa 
2022-12-07 03:11:50,027 sync -   explicit user name credentials: ChakiSa 
2022-12-07 03:15:24,088 sync - Restoring refs to reflect SVN state. 
2022-12-07 03:24:58,585 sync - Refs were successfully updated 
2022-12-07 03:24:58,897 sync - Location '1244' fetch completed, fetch took 789326 ms. 
2022-12-07 03:24:58,897 sync - Repository fetch completed, fetch took 789363 ms. 
2022-12-07 03:24:58,914 sync - about to refresh repository 
2022-12-07 03:24:59,419 sync - === 
2022-12-07 03:34:59,997 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 03:35:00,471 sync - Repository fetch started. 
2022-12-07 03:35:00,687 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 03:35:00,965 sync -   added user name credentials: ChakiSa 
2022-12-07 03:35:00,965 sync -   explicit user name credentials: ChakiSa 
2022-12-07 03:35:00,983 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 03:35:01,097 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 03:35:01,205 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 03:35:01,338 sync -   added user name credentials: ChakiSa 
2022-12-07 03:35:01,338 sync -   explicit user name credentials: ChakiSa 
2022-12-07 03:38:48,190 sync - Restoring refs to reflect SVN state. 
2022-12-07 03:48:26,226 sync - Refs were successfully updated 
2022-12-07 03:48:26,255 sync - Location '1244' fetch completed, fetch took 805638 ms. 
2022-12-07 03:48:26,255 sync - Repository fetch completed, fetch took 805661 ms. 
2022-12-07 03:48:26,270 sync - about to refresh repository 
2022-12-07 03:48:26,772 sync - === 
2022-12-07 03:58:27,275 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 03:58:27,604 sync - Repository fetch started. 
2022-12-07 03:58:28,022 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 03:58:28,175 sync -   added user name credentials: ChakiSa 
2022-12-07 03:58:28,175 sync -   explicit user name credentials: ChakiSa 
2022-12-07 03:58:28,196 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 03:58:28,368 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 03:58:28,443 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 03:58:28,443 sync -   added user name credentials: ChakiSa 
2022-12-07 03:58:28,443 sync -   explicit user name credentials: ChakiSa 
2022-12-07 04:02:05,962 sync - Restoring refs to reflect SVN state. 
2022-12-07 04:11:20,708 sync - Refs were successfully updated 
2022-12-07 04:11:20,747 sync - Location '1244' fetch completed, fetch took 772786 ms. 
2022-12-07 04:11:20,747 sync - Repository fetch completed, fetch took 772805 ms. 
2022-12-07 04:11:20,763 sync - about to refresh repository 
2022-12-07 04:11:21,293 sync - === 
2022-12-07 04:21:21,811 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 04:21:22,170 sync - Repository fetch started. 
2022-12-07 04:21:22,251 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 04:21:22,521 sync -   added user name credentials: ChakiSa 
2022-12-07 04:21:22,521 sync -   explicit user name credentials: ChakiSa 
2022-12-07 04:21:22,541 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 04:21:22,618 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 04:21:22,697 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 04:21:22,697 sync -   added user name credentials: ChakiSa 
2022-12-07 04:21:22,697 sync -   explicit user name credentials: ChakiSa 
2022-12-07 04:24:56,662 sync - Restoring refs to reflect SVN state. 
2022-12-07 04:33:56,603 sync - Refs were successfully updated 
2022-12-07 04:33:56,633 sync - Location '1244' fetch completed, fetch took 754442 ms. 
2022-12-07 04:33:56,633 sync - Repository fetch completed, fetch took 754463 ms. 
2022-12-07 04:33:56,650 sync - about to refresh repository 
2022-12-07 04:33:57,283 sync - === 
2022-12-07 04:43:57,865 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 04:43:58,220 sync - Repository fetch started. 
2022-12-07 04:43:58,324 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 04:43:58,324 sync -   added user name credentials: ChakiSa 
2022-12-07 04:43:58,324 sync -   explicit user name credentials: ChakiSa 
2022-12-07 04:43:58,342 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 04:43:58,498 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 04:43:58,566 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 04:43:58,566 sync -   added user name credentials: ChakiSa 
2022-12-07 04:43:58,566 sync -   explicit user name credentials: ChakiSa 
2022-12-07 04:47:28,363 sync - Restoring refs to reflect SVN state. 
2022-12-07 04:55:56,975 sync - Refs were successfully updated 
2022-12-07 04:55:56,999 sync - Location '1244' fetch completed, fetch took 718755 ms. 
2022-12-07 04:55:56,999 sync - Repository fetch completed, fetch took 718774 ms. 
2022-12-07 04:55:57,013 sync - about to refresh repository 
2022-12-07 04:55:57,509 sync - === 
2022-12-07 05:05:58,208 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 05:05:58,934 sync - Repository fetch started. 
2022-12-07 05:05:59,071 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 05:05:59,071 sync -   added user name credentials: ChakiSa 
2022-12-07 05:05:59,071 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:05:59,093 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 05:05:59,159 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 05:05:59,254 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 05:05:59,254 sync -   added user name credentials: ChakiSa 
2022-12-07 05:05:59,254 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:09:56,656 sync - Restoring refs to reflect SVN state. 
2022-12-07 05:18:31,504 sync - Refs were successfully updated 
2022-12-07 05:18:31,532 sync - Location '1244' fetch completed, fetch took 752568 ms. 
2022-12-07 05:18:31,532 sync - Repository fetch completed, fetch took 752598 ms. 
2022-12-07 05:18:31,548 sync - about to refresh repository 
2022-12-07 05:18:31,995 sync - === 
2022-12-07 05:28:32,695 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 05:28:33,146 sync - Repository fetch started. 
2022-12-07 05:28:33,251 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 05:28:33,437 sync -   added user name credentials: ChakiSa 
2022-12-07 05:28:33,437 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:28:33,472 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 05:28:33,528 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 05:28:33,615 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 05:28:33,615 sync -   added user name credentials: ChakiSa 
2022-12-07 05:28:33,615 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:32:58,109 sync - Restoring refs to reflect SVN state. 
2022-12-07 05:43:20,871 sync - Refs were successfully updated 
2022-12-07 05:43:20,899 sync - Location '1244' fetch completed, fetch took 887724 ms. 
2022-12-07 05:43:20,899 sync - Repository fetch completed, fetch took 887753 ms. 
2022-12-07 05:43:20,913 sync - about to refresh repository 
2022-12-07 05:43:21,532 sync - === 
2022-12-07 05:53:22,271 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 05:53:22,684 sync - Repository fetch started. 
2022-12-07 05:53:23,251 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 05:53:23,251 sync -   added user name credentials: ChakiSa 
2022-12-07 05:53:23,251 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:53:23,268 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 05:53:23,339 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 05:53:23,448 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 05:53:23,448 sync -   added user name credentials: ChakiSa 
2022-12-07 05:53:23,448 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:57:27,667 sync - Restoring refs to reflect SVN state. 
2022-12-07 06:07:36,522 sync - Refs were successfully updated 
2022-12-07 06:07:36,551 sync - Location '1244' fetch completed, fetch took 853393 ms. 
2022-12-07 06:07:36,551 sync - Repository fetch completed, fetch took 853440 ms. 
2022-12-07 06:07:36,565 sync - about to refresh repository 
2022-12-07 06:07:37,082 sync - === 
2022-12-07 06:17:37,538 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 06:17:37,871 sync - Repository fetch started. 
2022-12-07 06:17:38,466 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 06:17:38,662 sync -   added user name credentials: ChakiSa 
2022-12-07 06:17:38,662 sync -   explicit user name credentials: ChakiSa 
2022-12-07 06:17:38,680 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 06:17:38,750 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 06:17:38,816 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 06:17:38,816 sync -   added user name credentials: ChakiSa 
2022-12-07 06:17:38,816 sync -   explicit user name credentials: ChakiSa 
2022-12-07 06:21:22,110 sync - Restoring refs to reflect SVN state. 
2022-12-07 06:31:20,098 sync - Refs were successfully updated 
2022-12-07 06:31:20,391 sync - Location '1244' fetch completed, fetch took 821998 ms. 
2022-12-07 06:31:20,654 sync - Repository fetch completed, fetch took 822278 ms. 
2022-12-07 06:31:20,690 sync - about to refresh repository 
2022-12-07 06:31:21,201 sync - === 
2022-12-07 06:41:21,803 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 06:41:22,224 sync - Repository fetch started. 
2022-12-07 06:41:22,316 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 06:41:22,316 sync -   added user name credentials: ChakiSa 
2022-12-07 06:41:22,316 sync -   explicit user name credentials: ChakiSa 
2022-12-07 06:41:22,404 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 06:41:22,536 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 06:41:22,605 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 06:41:22,668 sync -   added user name credentials: ChakiSa 
2022-12-07 06:41:22,668 sync -   explicit user name credentials: ChakiSa 
2022-12-07 06:45:27,514 sync - Restoring refs to reflect SVN state. 
2022-12-07 06:55:38,612 sync - Refs were successfully updated 
2022-12-07 06:55:38,660 sync - Location '1244' fetch completed, fetch took 856415 ms. 
2022-12-07 06:55:39,174 sync - Repository fetch completed, fetch took 856950 ms. 
2022-12-07 06:55:39,193 sync - about to refresh repository 
2022-12-07 06:55:39,771 sync - === 
2022-12-07 07:05:40,547 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 07:05:41,042 sync - Repository fetch started. 
2022-12-07 07:05:41,306 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:05:41,354 sync -   added user name credentials: ChakiSa 
2022-12-07 07:05:41,354 sync -   explicit user name credentials: ChakiSa 
2022-12-07 07:05:41,406 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 07:05:41,562 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 07:05:41,674 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:05:41,930 sync -   added user name credentials: ChakiSa 
2022-12-07 07:05:41,930 sync -   explicit user name credentials: ChakiSa 
2022-12-07 07:10:08,970 sync - Restoring refs to reflect SVN state. 
2022-12-07 07:21:46,890 sync - Refs were successfully updated 
2022-12-07 07:21:47,026 sync - Location '1244' fetch completed, fetch took 965910 ms. 
2022-12-07 07:21:47,026 sync - Repository fetch completed, fetch took 965983 ms. 
2022-12-07 07:21:47,045 sync - about to refresh repository 
2022-12-07 07:21:47,847 sync - === 
2022-12-07 07:23:31,263 apply - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 07:23:33,308 apply - Mirror Install 
2022-12-07 07:23:33,389 apply - running install with refetch option set to 'false' 
2022-12-07 07:23:34,528 apply - Executing [chmod, ugo+r, /bitbucket_home/shared/data/subgit/repositories/1244/subgit/.run/info]; environmentVariables={USER=svc_atlasadm, XDG_SESSION_ID=32, HOME=/bitbucket_home};workingDirectory=/bitbucket_home 
2022-12-07 07:23:34,725 apply - Skip build check; external license: Atlassian Stash 
2022-12-07 07:23:35,663 apply - Updated installation report:
ErrorReport[description='Operation rejected: SubGit installation is in progress.
Operations will be allowed as soon as SubGit installation is completed.', warning=true, git enabled=false, svn enabled=false] 
2022-12-07 07:23:36,206 apply - Pid file does not exist: /bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid 
2022-12-07 07:23:36,231 apply - Daemon info pid=-1; port=-1; address=; user=null from file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid' 
2022-12-07 07:23:36,239 apply - Pid file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid' deleted. 
2022-12-07 07:23:36,249 apply - Trying to obtain file lock on '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock'. 
2022-12-07 07:23:36,258 apply - Succeeded attempt to obtain file lock on '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock' 
2022-12-07 07:23:36,305 apply - Pid file does not exist: /bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid 
2022-12-07 07:23:36,305 apply - Daemon info pid=-1; port=-1; address=; user=null from file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid' 
2022-12-07 07:23:36,642 apply - Old active configuration file:

# 
# Subversion to Git mapping options
# 
[svn]
	# Subversion repository URL
	url = http://yyyyy.com/svn/src
	minimalRevision = 1
	keepGitCommitTime = false
	auth = default

	# Options below (trunk, branches, tags, shelves) define correspondence between Subversion
	# directories and Git references. Depending on the actual Subversion project layout and whether
	# all or only some of the branches have to be mirrored, these options might need to be adjusted.
	#
	#  Generic mapping syntax is:
	#    <Subversion-Path-Pattern>:<Git-Reference-Pattern>
	#
	#  Subversion paths are relative to the URL defined by the svn.url option.
	#
	#  For more details refer to http://subgit.com/documentation pages.
	trunk = trunk:refs/heads/master
	branches = branches/*:refs/heads/*
	tags = tags/*:refs/tags/*
	shelves = shelves/*:refs/shelves/*
	excludeBranches = branches/GSPANN_ENHANCEMENTS_3

[core]
	shared = false
	logs = subgit/logs
	authorsFile = UTF-8
	pathEncoding = UTF-8

[auth "default"]
	subversionConfigurationDirectory = subgit
	userName = hercule

[daemon]
	pidFile = subgit/daemon.pid
	idleTimeout = 0
	classpath = /bitbucket_home/shared/data/subgit/lib/3.3.9-9999999

[translate]
	eols = false
	ignores = true

 
2022-12-07 07:23:37,170 apply - New active configuration file:

# 
# Subversion to Git mapping options
# 
[svn]
	# Subversion repository URL
	url = http://yyyyy.com/svn/src
	minimalRevision = 1
	keepGitCommitTime = false
	auth = default

	# Options below (trunk, branches, tags, shelves) define correspondence between Subversion
	# directories and Git references. Depending on the actual Subversion project layout and whether
	# all or only some of the branches have to be mirrored, these options might need to be adjusted.
	#
	#  Generic mapping syntax is:
	#    <Subversion-Path-Pattern>:<Git-Reference-Pattern>
	#
	#  Subversion paths are relative to the URL defined by the svn.url option.
	#
	#  For more details refer to http://subgit.com/documentation pages.
	trunk = trunk:refs/heads/master
	branches = branches/*:refs/heads/*
	tags = tags/*:refs/tags/*
	shelves = shelves/*:refs/shelves/*
	excludeBranches = branches/GSPANN_ENHANCEMENTS_3

[core]
	shared = false
	logs = subgit/logs
	authorsFile = UTF-8
	pathEncoding = UTF-8

[auth "default"]
	subversionConfigurationDirectory = subgit
	userName = hercule

[daemon]
	pidFile = subgit/daemon.pid
	idleTimeout = 0
	classpath = /bitbucket_home/shared/data/subgit/lib/3.3.9-9999999

[translate]
	eols = false
	ignores = true

 
2022-12-07 07:23:37,619 apply - Pid file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid' deleted. 
2022-12-07 07:23:37,627 apply - Trying to release file lock on '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock'. 
2022-12-07 07:23:37,627 apply - Released file lock on '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock' 
2022-12-07 07:23:37,627 apply - Closed random access file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock' 
2022-12-07 07:23:37,860 apply - Skip upgrade tasks: daemon binaries located in non-standard directory 
2022-12-07 07:23:38,366 apply - Executing [chmod, -R, g+rwX, /bitbucket_home/shared/data/subgit/repositories/1244/subgit/tmp]; environmentVariables={USER=svc_atlasadm, XDG_SESSION_ID=32, HOME=/bitbucket_home};workingDirectory=/bitbucket_home 
2022-12-07 07:28:19,581 apply - Created installation report:
ErrorReport[description='Push rejected: SubGit installation is in progress.
Pushes will be allowed as soon as SubGit installation is completed.', warning=true, git enabled=false, svn enabled=true] 
2022-12-07 07:28:19,627 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:28:19,627 apply -   added user name credentials: ChakiSa 
2022-12-07 07:28:19,627 apply -   explicit user name credentials: ChakiSa 
2022-12-07 07:28:19,968 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:28:19,968 apply -   added user name credentials: ChakiSa 
2022-12-07 07:28:19,968 apply -   explicit user name credentials: ChakiSa 
2022-12-07 07:28:20,607 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:28:20,687 apply -   added user name credentials: ChakiSa 
2022-12-07 07:28:20,687 apply -   explicit user name credentials: ChakiSa 
2022-12-07 07:28:22,828 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:28:22,890 apply -   added user name credentials: ChakiSa 
2022-12-07 07:28:22,952 apply -   explicit user name credentials: ChakiSa 
2022-12-07 07:28:23,178 apply - Uninstall Git hooks: /bitbucket_home/shared/data/repositories/1244/hooks/pre-receive and /bitbucket_home/shared/data/repositories/1244/hooks/post-receive 
2022-12-07 07:28:23,480 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:28:23,480 apply -   added user name credentials: ChakiSa 
2022-12-07 07:28:23,567 apply -   explicit user name credentials: ChakiSa 
2022-12-07 07:28:24,003 apply - Executing [chmod, ugo+r, /bitbucket_home/shared/data/subgit/repositories/1244/subgit/.run/info]; environmentVariables={USER=svc_atlasadm, XDG_SESSION_ID=32, HOME=/bitbucket_home};workingDirectory=/bitbucket_home 
2022-12-07 07:28:25,045 apply - Deleted error report '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/error' 
2022-12-07 07:28:27,595 apply - === 
2022-12-07 07:28:28,433 verify - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 07:28:28,438 verify - core.trustfolderstat option will not be unset 
2022-12-07 07:28:28,825 verify - mirror does not need verification, last verification data: 
2022-12-07 07:28:28,830 verify - version:   4.0.7 
2022-12-07 07:28:28,830 verify - revision:  84164 
2022-12-07 07:28:28,830 verify - completed: true 
2022-12-07 07:28:28,830 verify - errors: 
2022-12-07 07:28:29,398 verify - updating verify information: 
2022-12-07 07:28:29,398 verify - version:   4.0.7 
2022-12-07 07:28:29,398 verify - revision:  84164 
2022-12-07 07:28:29,398 verify - completed: true 
2022-12-07 07:28:29,398 verify - errors: 
2022-12-07 07:28:29,399 verify - === 
2022-12-07 07:28:30,008 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 07:28:30,536 sync - Repository fetch started. 
2022-12-07 07:28:30,665 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:28:30,665 sync -   added user name credentials: ChakiSa 
2022-12-07 07:28:30,665 sync -   explicit user name credentials: ChakiSa 
2022-12-07 07:28:30,683 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 07:28:30,792 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 07:28:30,894 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 07:28:30,894 sync -   added user name credentials: ChakiSa 
2022-12-07 07:28:30,894 sync -   explicit user name credentials: ChakiSa 
2022-12-07 07:33:10,986 sync - Restoring refs to reflect SVN state. 
2022-12-07 07:44:38,867 sync - Refs were successfully updated 
2022-12-07 07:44:38,898 sync - Location '1244' fetch completed, fetch took 968320 ms. 
2022-12-07 07:44:39,429 sync - Repository fetch completed, fetch took 968888 ms. 
2022-12-07 07:44:39,455 sync - about to refresh repository 
2022-12-07 07:44:40,080 sync - === 
2022-12-07 08:44:40,861 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 08:44:41,278 sync - Repository fetch started. 
2022-12-07 08:44:41,363 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 08:44:41,363 sync -   added user name credentials: ChakiSa 
2022-12-07 08:44:41,363 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:44:41,384 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 08:44:41,500 sync - Revisions: <fetched=85119; last=85119> 
2022-12-07 08:44:41,574 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 08:44:41,574 sync -   added user name credentials: ChakiSa 
2022-12-07 08:44:41,574 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:48:40,941 sync - Restoring refs to reflect SVN state. 
2022-12-07 08:59:10,680 sync - Refs were successfully updated 
2022-12-07 08:59:10,861 sync - Location '1244' fetch completed, fetch took 869563 ms. 
2022-12-07 08:59:10,861 sync - Repository fetch completed, fetch took 869583 ms. 
2022-12-07 08:59:10,876 sync - about to refresh repository 
2022-12-07 08:59:11,462 sync - === 
2022-12-07 09:59:12,583 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 09:59:13,320 sync - Repository fetch started. 
2022-12-07 09:59:13,427 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 09:59:13,470 sync -   added user name credentials: ChakiSa 
2022-12-07 09:59:13,470 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:59:13,487 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 09:59:13,628 sync - Revisions: <fetched=85119; last=85120> 
2022-12-07 09:59:13,703 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 09:59:13,703 sync -   added user name credentials: ChakiSa 
2022-12-07 09:59:13,703 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:59:18,692 sync - progress range: Fetching revisions from r85119 to r85120 
2022-12-07 09:59:18,843 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 09:59:18,843 sync -   added user name credentials: ChakiSa 
2022-12-07 09:59:18,843 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:59:19,644 sync - Starting fetch-back preventing procedure. 
2022-12-07 09:59:19,760 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 09:59:19,760 sync -   added user name credentials: ChakiSa 
2022-12-07 09:59:19,760 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:59:20,853 sync - Checking for fetch-back phase prevention feasibility. 
2022-12-07 09:59:21,001 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 09:59:21,001 sync -   added user name credentials: ChakiSa 
2022-12-07 09:59:21,001 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:59:21,049 sync - Fetching http://yyyyy.com/svn/src up to revision=HEAD 
2022-12-07 09:59:21,455 sync - SET_PATH '' 85120 not empty depth=infinity 
2022-12-07 09:59:21,883 sync - SET_PATH 'trunk' 85119 not empty depth=infinity 
2022-12-07 09:59:22,840 sync - fetching: branch = refs/svn/root/trunk, revision = 85120, receivedFileCount=0 
2022-12-07 09:59:23,195 sync - successfully received 'trunk/sqa/system/JunitFramework/DataTables/RecipeCreation/RecipeCombinations.csv' with size=420 
2022-12-07 09:59:24,971 sync - successfully received 'trunk/sqa/system/JunitFramework/src/test/java/com/lamresearch/nexus/utility/RecipeCreator/CreateRecipe.java' with size=86289 
2022-12-07 09:59:25,398 sync - successfully received 'trunk/sqa/system/JunitFramework/src/test/java/com/lamresearch/nexus/utility/RecipeCreator/ExportRecipe.java' with size=8653 
2022-12-07 09:59:32,676 sync - fetched: hash = 05efae3244b48579d3cc83c118e676e42cd1f4e5, branch = refs/svn/root/trunk, revision = 85120 
2022-12-07 09:59:33,672 sync - Updating latest fetched revision for svn-remote "svn" to r85120 
2022-12-07 09:59:34,127 sync - Running 'git gc --auto' for 'SVNMIG / src ID: 1244' repository. 
2022-12-07 09:59:34,185 sync - Executing [git, gc, --auto]; environmentVariables={USER=svc_atlasadm, XDG_SESSION_ID=32, HOME=/bitbucket_home};workingDirectory=/bitbucket_home/shared/data/repositories/1244 
2022-12-07 09:59:35,017 sync - 'git gc --auto' exited with return code '0'. 
2022-12-07 10:03:50,441 sync - Restoring refs to reflect SVN state. 
2022-12-07 10:13:38,755 sync - Refs were successfully updated 
2022-12-07 10:13:38,780 sync - Location '1244' fetch completed, fetch took 865433 ms. 
2022-12-07 10:13:38,802 sync - Repository fetch completed, fetch took 865481 ms. 
2022-12-07 10:13:38,819 sync - about to refresh repository 
2022-12-07 10:13:38,819 sync -     ref delta: a828b2db4018308462a4e163276af02846f55773 05efae3244b48579d3cc83c118e676e42cd1f4e5 refs/heads/master 
2022-12-07 10:13:44,150 sync - === 
2022-12-07 11:13:45,150 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 11:13:45,895 sync - Repository fetch started. 
2022-12-07 11:13:46,052 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 11:13:46,052 sync -   added user name credentials: ChakiSa 
2022-12-07 11:13:46,052 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:13:46,080 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 11:13:46,304 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 11:13:46,391 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 11:13:46,391 sync -   added user name credentials: ChakiSa 
2022-12-07 11:13:46,391 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:18:20,525 sync - Restoring refs to reflect SVN state. 
2022-12-07 11:29:14,214 sync - Refs were successfully updated 
2022-12-07 11:29:14,292 sync - Location '1244' fetch completed, fetch took 928326 ms. 
2022-12-07 11:29:14,293 sync - Repository fetch completed, fetch took 928375 ms. 
2022-12-07 11:29:14,309 sync - about to refresh repository 
2022-12-07 11:29:15,776 sync - === 
2022-12-07 12:29:16,408 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 12:29:16,863 sync - Repository fetch started. 
2022-12-07 12:29:17,043 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 12:29:17,226 sync -   added user name credentials: ChakiSa 
2022-12-07 12:29:17,226 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:29:17,241 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 12:29:17,503 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 12:29:17,618 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 12:29:17,638 sync -   added user name credentials: ChakiSa 
2022-12-07 12:29:17,638 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:33:06,155 sync - Restoring refs to reflect SVN state. 
2022-12-07 12:43:24,662 sync - Refs were successfully updated 
2022-12-07 12:43:24,686 sync - Location '1244' fetch completed, fetch took 847705 ms. 
2022-12-07 12:43:24,686 sync - Repository fetch completed, fetch took 847747 ms. 
2022-12-07 12:43:24,699 sync - about to refresh repository 
2022-12-07 12:43:25,395 sync - === 
2022-12-07 13:43:25,991 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 13:43:26,517 sync - Repository fetch started. 
2022-12-07 13:43:26,618 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 13:43:26,913 sync -   added user name credentials: ChakiSa 
2022-12-07 13:43:26,913 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:43:26,933 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 13:43:27,198 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 13:43:27,268 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 13:43:27,268 sync -   added user name credentials: ChakiSa 
2022-12-07 13:43:27,268 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:47:17,023 sync - Restoring refs to reflect SVN state. 
2022-12-07 13:57:37,953 sync - Refs were successfully updated 
2022-12-07 13:57:38,264 sync - Location '1244' fetch completed, fetch took 851716 ms. 
2022-12-07 13:57:38,265 sync - Repository fetch completed, fetch took 851748 ms. 
2022-12-07 13:57:38,280 sync - about to refresh repository 
2022-12-07 13:57:38,873 sync - === 
2022-12-07 14:57:39,707 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 14:57:40,173 sync - Repository fetch started. 
2022-12-07 14:57:40,260 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 14:57:40,260 sync -   added user name credentials: ChakiSa 
2022-12-07 14:57:40,260 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:57:40,275 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 14:57:40,618 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 14:57:40,680 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 14:57:40,680 sync -   added user name credentials: ChakiSa 
2022-12-07 14:57:40,680 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:02:36,332 sync - Restoring refs to reflect SVN state. 
2022-12-07 15:13:47,322 sync - Refs were successfully updated 
2022-12-07 15:13:47,369 sync - Location '1244' fetch completed, fetch took 967174 ms. 
2022-12-07 15:13:47,370 sync - Repository fetch completed, fetch took 967196 ms. 
2022-12-07 15:13:47,384 sync - about to refresh repository 
2022-12-07 15:13:48,062 sync - === 
2022-12-07 16:13:48,678 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 16:13:49,227 sync - Repository fetch started. 
2022-12-07 16:13:49,336 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 16:13:49,336 sync -   added user name credentials: ChakiSa 
2022-12-07 16:13:49,336 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:13:49,353 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 16:13:49,674 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 16:13:49,899 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 16:13:49,962 sync -   added user name credentials: ChakiSa 
2022-12-07 16:13:49,962 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:17:53,347 sync - Restoring refs to reflect SVN state. 
2022-12-07 16:28:17,050 sync - Refs were successfully updated 
2022-12-07 16:28:17,083 sync - Location '1244' fetch completed, fetch took 867836 ms. 
2022-12-07 16:28:17,083 sync - Repository fetch completed, fetch took 867856 ms. 
2022-12-07 16:28:17,100 sync - about to refresh repository 
2022-12-07 16:28:17,604 sync - === 
2022-12-07 17:28:18,370 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 17:28:18,842 sync - Repository fetch started. 
2022-12-07 17:28:19,007 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 17:28:19,007 sync -   added user name credentials: ChakiSa 
2022-12-07 17:28:19,007 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:28:19,030 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 17:28:19,490 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 17:28:19,638 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 17:28:19,846 sync -   added user name credentials: ChakiSa 
2022-12-07 17:28:19,846 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:32:43,436 sync - Restoring refs to reflect SVN state. 
2022-12-07 17:43:18,391 sync - Refs were successfully updated 
2022-12-07 17:43:18,416 sync - Location '1244' fetch completed, fetch took 899488 ms. 
2022-12-07 17:43:18,416 sync - Repository fetch completed, fetch took 899513 ms. 
2022-12-07 17:43:18,430 sync - about to refresh repository 
2022-12-07 17:43:19,016 sync - === 
2022-12-07 18:43:21,435 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 18:43:21,848 sync - Repository fetch started. 
2022-12-07 18:43:21,963 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 18:43:21,983 sync -   added user name credentials: ChakiSa 
2022-12-07 18:43:21,983 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:43:21,999 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 18:43:22,452 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 18:43:22,633 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 18:43:22,872 sync -   added user name credentials: ChakiSa 
2022-12-07 18:43:22,872 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:47:30,024 sync - Restoring refs to reflect SVN state. 
2022-12-07 18:58:23,988 sync - Refs were successfully updated 
2022-12-07 18:58:24,036 sync - Location '1244' fetch completed, fetch took 902162 ms. 
2022-12-07 18:58:24,036 sync - Repository fetch completed, fetch took 902188 ms. 
2022-12-07 18:58:24,051 sync - about to refresh repository 
2022-12-07 18:58:24,666 sync - === 
2022-12-07 19:58:27,938 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 19:58:28,332 sync - Repository fetch started. 
2022-12-07 19:58:28,450 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 19:58:28,450 sync -   added user name credentials: ChakiSa 
2022-12-07 19:58:28,450 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:58:28,468 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 19:58:29,073 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 19:58:29,282 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 19:58:29,342 sync -   added user name credentials: ChakiSa 
2022-12-07 19:58:29,342 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:02:48,583 sync - Restoring refs to reflect SVN state. 
2022-12-07 20:14:24,045 sync - Refs were successfully updated 
2022-12-07 20:14:24,109 sync - Location '1244' fetch completed, fetch took 955754 ms. 
2022-12-07 20:14:24,109 sync - Repository fetch completed, fetch took 955777 ms. 
2022-12-07 20:14:24,122 sync - about to refresh repository 
2022-12-07 20:14:25,064 sync - === 
2022-12-07 21:14:26,034 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 21:14:26,688 sync - Repository fetch started. 
2022-12-07 21:14:26,797 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:14:26,797 sync -   added user name credentials: ChakiSa 
2022-12-07 21:14:26,797 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:14:26,819 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 21:14:27,163 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 21:14:27,324 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:14:27,385 sync -   added user name credentials: ChakiSa 
2022-12-07 21:14:27,385 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:18:36,411 sync - Restoring refs to reflect SVN state. 
2022-12-07 21:30:36,634 sync - Refs were successfully updated 
2022-12-07 21:30:36,679 sync - Location '1244' fetch completed, fetch took 969957 ms. 
2022-12-07 21:30:36,689 sync - Repository fetch completed, fetch took 970001 ms. 
2022-12-07 21:30:36,702 sync - about to refresh repository 
2022-12-07 21:30:37,626 sync - === 
2022-12-07 21:30:38,176 apply - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 21:30:40,015 apply - Mirror Install 
2022-12-07 21:30:40,179 apply - running install with refetch option set to 'false' 
2022-12-07 21:30:41,027 apply - Executing [chmod, ugo+r, /bitbucket_home/shared/data/subgit/repositories/1244/subgit/.run/info]; environmentVariables={USER=svc_atlasadm, XDG_SESSION_ID=32, HOME=/bitbucket_home};workingDirectory=/bitbucket_home 
2022-12-07 21:30:41,561 apply - Skip build check; external license: Atlassian Stash 
2022-12-07 21:30:42,561 apply - Updated installation report:
ErrorReport[description='Operation rejected: SubGit installation is in progress.
Operations will be allowed as soon as SubGit installation is completed.', warning=true, git enabled=false, svn enabled=false] 
2022-12-07 21:30:42,808 apply - Pid file does not exist: /bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid 
2022-12-07 21:30:42,811 apply - Daemon info pid=-1; port=-1; address=; user=null from file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid' 
2022-12-07 21:30:42,816 apply - Pid file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid' deleted. 
2022-12-07 21:30:42,824 apply - Trying to obtain file lock on '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock'. 
2022-12-07 21:30:42,830 apply - Succeeded attempt to obtain file lock on '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock' 
2022-12-07 21:30:42,856 apply - Pid file does not exist: /bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid 
2022-12-07 21:30:42,857 apply - Daemon info pid=-1; port=-1; address=; user=null from file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid' 
2022-12-07 21:30:43,192 apply - Old active configuration file:

# 
# Subversion to Git mapping options
# 
[svn]
	# Subversion repository URL
	url = http://yyyyy.com/svn/src
	minimalRevision = 1
	keepGitCommitTime = false
	auth = default

	# Options below (trunk, branches, tags, shelves) define correspondence between Subversion
	# directories and Git references. Depending on the actual Subversion project layout and whether
	# all or only some of the branches have to be mirrored, these options might need to be adjusted.
	#
	#  Generic mapping syntax is:
	#    <Subversion-Path-Pattern>:<Git-Reference-Pattern>
	#
	#  Subversion paths are relative to the URL defined by the svn.url option.
	#
	#  For more details refer to http://subgit.com/documentation pages.
	trunk = trunk:refs/heads/master
	branches = branches/*:refs/heads/*
	tags = tags/*:refs/tags/*
	shelves = shelves/*:refs/shelves/*
	excludeBranches = branches/GSPANN_ENHANCEMENTS_3

[core]
	shared = false
	logs = subgit/logs
	authorsFile = UTF-8
	pathEncoding = UTF-8

[auth "default"]
	subversionConfigurationDirectory = subgit
	userName = hercule

[daemon]
	pidFile = subgit/daemon.pid
	idleTimeout = 0
	classpath = /bitbucket_home/shared/data/subgit/lib/3.3.9-9999999

[translate]
	eols = false
	ignores = true

 
2022-12-07 21:30:43,665 apply - New active configuration file:

# 
# Subversion to Git mapping options
# 
[svn]
	# Subversion repository URL
	url = http://yyyyy.com/svn/src
	minimalRevision = 1
	keepGitCommitTime = false
	auth = default

	# Options below (trunk, branches, tags, shelves) define correspondence between Subversion
	# directories and Git references. Depending on the actual Subversion project layout and whether
	# all or only some of the branches have to be mirrored, these options might need to be adjusted.
	#
	#  Generic mapping syntax is:
	#    <Subversion-Path-Pattern>:<Git-Reference-Pattern>
	#
	#  Subversion paths are relative to the URL defined by the svn.url option.
	#
	#  For more details refer to http://subgit.com/documentation pages.
	trunk = trunk:refs/heads/master
	branches = branches/*:refs/heads/*
	tags = tags/*:refs/tags/*
	shelves = shelves/*:refs/shelves/*
	excludeBranches = branches/GSPANN_ENHANCEMENTS_3
	triggerGitGC = true

[core]
	shared = false
	logs = subgit/logs
	authorsFile = UTF-8
	pathEncoding = UTF-8

[auth "default"]
	subversionConfigurationDirectory = subgit
	userName = hercule

[daemon]
	pidFile = subgit/daemon.pid
	idleTimeout = 0
	classpath = /bitbucket_home/shared/data/subgit/lib/3.3.9-9999999

[translate]
	eols = false
	ignores = true

 
2022-12-07 21:30:44,385 apply - Pid file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.pid' deleted. 
2022-12-07 21:30:44,393 apply - Trying to release file lock on '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock'. 
2022-12-07 21:30:44,393 apply - Released file lock on '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock' 
2022-12-07 21:30:44,393 apply - Closed random access file '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/daemon.lock' 
2022-12-07 21:30:44,567 apply - Skip upgrade tasks: daemon binaries located in non-standard directory 
2022-12-07 21:30:44,968 apply - Executing [chmod, -R, g+rwX, /bitbucket_home/shared/data/subgit/repositories/1244/subgit/tmp]; environmentVariables={USER=svc_atlasadm, XDG_SESSION_ID=32, HOME=/bitbucket_home};workingDirectory=/bitbucket_home 
2022-12-07 21:34:10,979 apply - Created installation report:
ErrorReport[description='Push rejected: SubGit installation is in progress.
Pushes will be allowed as soon as SubGit installation is completed.', warning=true, git enabled=false, svn enabled=true] 
2022-12-07 21:34:11,021 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:34:11,464 apply -   added user name credentials: ChakiSa 
2022-12-07 21:34:11,465 apply -   explicit user name credentials: ChakiSa 
2022-12-07 21:34:12,129 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:34:12,163 apply -   added user name credentials: ChakiSa 
2022-12-07 21:34:12,163 apply -   explicit user name credentials: ChakiSa 
2022-12-07 21:34:12,830 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:34:12,948 apply -   added user name credentials: ChakiSa 
2022-12-07 21:34:12,948 apply -   explicit user name credentials: ChakiSa 
2022-12-07 21:34:15,245 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:34:15,338 apply -   added user name credentials: ChakiSa 
2022-12-07 21:34:15,338 apply -   explicit user name credentials: ChakiSa 
2022-12-07 21:34:15,725 apply - Uninstall Git hooks: /bitbucket_home/shared/data/repositories/1244/hooks/pre-receive and /bitbucket_home/shared/data/repositories/1244/hooks/post-receive 
2022-12-07 21:34:16,018 apply - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:34:16,018 apply -   added user name credentials: ChakiSa 
2022-12-07 21:34:16,018 apply -   explicit user name credentials: ChakiSa 
2022-12-07 21:34:16,616 apply - Executing [chmod, ugo+r, /bitbucket_home/shared/data/subgit/repositories/1244/subgit/.run/info]; environmentVariables={USER=svc_atlasadm, XDG_SESSION_ID=32, HOME=/bitbucket_home};workingDirectory=/bitbucket_home 
2022-12-07 21:34:17,568 apply - Deleted error report '/bitbucket_home/shared/data/subgit/repositories/1244/subgit/error' 
2022-12-07 21:34:19,641 apply - === 
2022-12-07 21:34:20,446 verify - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 21:34:20,447 verify - core.trustfolderstat option will not be unset 
2022-12-07 21:34:20,891 verify - mirror does not need verification, last verification data: 
2022-12-07 21:34:20,998 verify - version:   4.0.7 
2022-12-07 21:34:20,998 verify - revision:  84164 
2022-12-07 21:34:20,998 verify - completed: true 
2022-12-07 21:34:20,998 verify - errors: 
2022-12-07 21:34:21,543 verify - updating verify information: 
2022-12-07 21:34:21,543 verify - version:   4.0.7 
2022-12-07 21:34:21,543 verify - revision:  84164 
2022-12-07 21:34:21,543 verify - completed: true 
2022-12-07 21:34:21,543 verify - errors: 
2022-12-07 21:34:21,543 verify - === 
2022-12-07 21:34:22,142 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 21:34:22,655 sync - Repository fetch started. 
2022-12-07 21:34:23,266 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:34:23,266 sync -   added user name credentials: ChakiSa 
2022-12-07 21:34:23,266 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:34:23,282 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 21:34:23,651 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 21:34:23,723 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 21:34:23,723 sync -   added user name credentials: ChakiSa 
2022-12-07 21:34:23,723 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:38:15,414 sync - Restoring refs to reflect SVN state. 
2022-12-07 21:48:38,221 sync - Refs were successfully updated 
2022-12-07 21:48:38,255 sync - Location '1244' fetch completed, fetch took 855081 ms. 
2022-12-07 21:48:38,255 sync - Repository fetch completed, fetch took 855120 ms. 
2022-12-07 21:48:38,269 sync - about to refresh repository 
2022-12-07 21:48:38,949 sync - === 
2022-12-07 22:48:39,883 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 22:48:40,414 sync - Repository fetch started. 
2022-12-07 22:48:40,559 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 22:48:41,261 sync -   added user name credentials: ChakiSa 
2022-12-07 22:48:41,261 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:48:41,285 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-07 22:48:42,776 sync - Revisions: <fetched=85120; last=85120> 
2022-12-07 22:48:42,859 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-07 22:48:42,886 sync -   added user name credentials: ChakiSa 
2022-12-07 22:48:42,886 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:54:00,166 sync - Restoring refs to reflect SVN state. 
2022-12-07 23:05:52,307 sync - Refs were successfully updated 
2022-12-07 23:05:52,357 sync - Location '1244' fetch completed, fetch took 1031915 ms. 
2022-12-07 23:05:52,357 sync - Repository fetch completed, fetch took 1031943 ms. 
2022-12-07 23:05:52,382 sync - about to refresh repository 
2022-12-07 23:05:53,006 sync - === 
2022-12-08 00:05:54,279 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 00:05:54,736 sync - Repository fetch started. 
2022-12-08 00:05:55,044 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-08 00:05:55,190 sync -   added user name credentials: ChakiSa 
2022-12-08 00:05:55,245 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:05:55,262 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-08 00:05:56,707 sync - Revisions: <fetched=85120; last=85121> 
2022-12-08 00:05:56,928 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-08 00:05:56,928 sync -   added user name credentials: ChakiSa 
2022-12-08 00:05:56,928 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:06:01,890 sync - progress range: Fetching revisions from r85120 to r85121 
2022-12-08 00:06:02,222 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-08 00:06:02,222 sync -   added user name credentials: ChakiSa 
2022-12-08 00:06:02,222 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:06:03,509 sync - Starting fetch-back preventing procedure. 
2022-12-08 00:06:03,930 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-08 00:06:03,930 sync -   added user name credentials: ChakiSa 
2022-12-08 00:06:03,930 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:06:05,587 sync - Checking for fetch-back phase prevention feasibility. 
2022-12-08 00:06:05,694 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-08 00:06:05,694 sync -   added user name credentials: ChakiSa 
2022-12-08 00:06:05,694 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:06:05,865 sync - Fetching http://yyyyy.com/svn/src up to revision=HEAD 
2022-12-08 00:06:06,918 sync - SET_PATH '' 85121 not empty depth=infinity 
2022-12-08 00:06:06,986 sync - SET_PATH 'branches' 85121 not empty depth=infinity 
2022-12-08 00:06:06,988 sync - SET_PATH 'branches/PR-115108' 85120 not empty depth=infinity 
2022-12-08 00:06:09,012 sync - fetching: branch = refs/svn/root/branches/PR-115108, revision = 85121, receivedFileCount=0 
2022-12-08 00:06:09,594 sync - successfully received 'branches/PR-115108/ds/com/nvls/ncf/programmanager/IProgramManager.java' with size=46315 
2022-12-08 00:06:12,581 sync - successfully received 'branches/PR-115108/gui/com/nvls/ncf/ui/stores/program/ProgramStore.java' with size=26654 
2022-12-08 00:06:18,471 sync - fetched: hash = b38a44838801193f7ab6049b8af000c79322ce3f, branch = refs/svn/root/branches/PR-115108, revision = 85121 
2022-12-08 00:06:19,155 sync - Updating latest fetched revision for svn-remote "svn" to r85121 
2022-12-08 00:10:35,677 sync - Restoring refs to reflect SVN state. 
2022-12-08 00:21:11,846 sync - Refs were successfully updated 
2022-12-08 00:21:11,931 sync - Location '1244' fetch completed, fetch took 916974 ms. 
2022-12-08 00:21:12,025 sync - Repository fetch completed, fetch took 917134 ms. 
2022-12-08 00:21:12,038 sync - about to refresh repository 
2022-12-08 00:21:12,038 sync -     ref delta: 8af88081bf59d4bd80a7fb685d36392df9dbef22 b38a44838801193f7ab6049b8af000c79322ce3f refs/heads/PR-115108 
2022-12-08 00:21:17,341 sync - === 
2022-12-08 01:21:19,538 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 01:21:20,385 sync - Repository fetch started. 
2022-12-08 01:21:20,558 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-08 01:21:20,558 sync -   added user name credentials: ChakiSa 
2022-12-08 01:21:20,558 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:21:20,591 sync - Checking remote 'http://yyyyy.com/svn/src'. 
2022-12-08 01:21:20,979 sync - Revisions: <fetched=85121; last=85121> 
2022-12-08 01:21:21,294 sync - svn authentication manager for ''http://yyyyy.com/svn/src'' 
2022-12-08 01:21:21,603 sync -   added user name credentials: ChakiSa 
2022-12-08 01:21:21,603 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:27:24,119 sync - Restoring refs to reflect SVN state. 
2022-12-08 01:37:08,983 sync - Refs were successfully updated 
2022-12-08 01:37:09,020 sync - Location '1244' fetch completed, fetch took 948607 ms. 
2022-12-08 01:37:09,020 sync - Repository fetch completed, fetch took 948633 ms. 
2022-12-08 01:37:09,035 sync - about to refresh repository 
2022-12-08 01:37:09,811 sync - === 

Thanks,
Sitaram

The logs of build repo:

2022-12-07 04:24:21,300 sync -   explicit user name credentials: ChakiSa 
2022-12-07 04:28:00,888 sync - Restoring refs to reflect SVN state. 
2022-12-07 04:36:51,796 sync - Refs were successfully updated 
2022-12-07 04:36:51,821 sync - Location '1223' fetch completed, fetch took 750820 ms. 
2022-12-07 04:36:51,821 sync - Repository fetch completed, fetch took 750842 ms. 
2022-12-07 04:36:51,837 sync - about to refresh repository 
2022-12-07 04:36:52,412 sync - === 
2022-12-07 04:46:52,976 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 04:46:53,342 sync - Repository fetch started. 
2022-12-07 04:46:53,548 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 04:46:53,548 sync -   added user name credentials: ChakiSa 
2022-12-07 04:46:53,548 sync -   explicit user name credentials: ChakiSa 
2022-12-07 04:46:53,563 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 04:46:53,630 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 04:46:53,735 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 04:46:53,735 sync -   added user name credentials: ChakiSa 
2022-12-07 04:46:53,735 sync -   explicit user name credentials: ChakiSa 
2022-12-07 04:50:16,946 sync - Restoring refs to reflect SVN state. 
2022-12-07 04:58:47,251 sync - Refs were successfully updated 
2022-12-07 04:58:47,276 sync - Location '1223' fetch completed, fetch took 713785 ms. 
2022-12-07 04:58:47,276 sync - Repository fetch completed, fetch took 713821 ms. 
2022-12-07 04:58:47,292 sync - about to refresh repository 
2022-12-07 04:58:47,816 sync - === 
2022-12-07 05:08:49,844 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 05:08:50,336 sync - Repository fetch started. 
2022-12-07 05:08:51,043 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 05:08:51,043 sync -   added user name credentials: ChakiSa 
2022-12-07 05:08:51,043 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:08:51,058 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 05:08:51,102 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 05:08:51,179 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 05:08:51,179 sync -   added user name credentials: ChakiSa 
2022-12-07 05:08:51,179 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:12:28,172 sync - Restoring refs to reflect SVN state. 
2022-12-07 05:20:54,378 sync - Refs were successfully updated 
2022-12-07 05:20:54,406 sync - Location '1223' fetch completed, fetch took 723450 ms. 
2022-12-07 05:20:54,406 sync - Repository fetch completed, fetch took 723470 ms. 
2022-12-07 05:20:54,434 sync - about to refresh repository 
2022-12-07 05:20:55,058 sync - === 
2022-12-07 05:30:55,858 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 05:30:56,306 sync - Repository fetch started. 
2022-12-07 05:30:56,399 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 05:30:56,419 sync -   added user name credentials: ChakiSa 
2022-12-07 05:30:56,419 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:30:56,441 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 05:30:56,581 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 05:30:56,650 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 05:30:56,650 sync -   added user name credentials: ChakiSa 
2022-12-07 05:30:56,650 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:35:18,232 sync - Restoring refs to reflect SVN state. 
2022-12-07 05:45:24,046 sync - Refs were successfully updated 
2022-12-07 05:45:24,086 sync - Location '1223' fetch completed, fetch took 867760 ms. 
2022-12-07 05:45:24,086 sync - Repository fetch completed, fetch took 867780 ms. 
2022-12-07 05:45:24,104 sync - about to refresh repository 
2022-12-07 05:45:24,801 sync - === 
2022-12-07 05:55:25,427 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 05:55:25,863 sync - Repository fetch started. 
2022-12-07 05:55:25,960 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 05:55:26,068 sync -   added user name credentials: ChakiSa 
2022-12-07 05:55:26,068 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:55:26,104 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 05:55:26,160 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 05:55:26,257 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 05:55:26,425 sync -   added user name credentials: ChakiSa 
2022-12-07 05:55:26,425 sync -   explicit user name credentials: ChakiSa 
2022-12-07 05:59:25,976 sync - Restoring refs to reflect SVN state. 
2022-12-07 06:09:40,594 sync - Refs were successfully updated 
2022-12-07 06:09:40,622 sync - Location '1223' fetch completed, fetch took 854733 ms. 
2022-12-07 06:09:40,622 sync - Repository fetch completed, fetch took 854759 ms. 
2022-12-07 06:09:40,638 sync - about to refresh repository 
2022-12-07 06:09:41,765 sync - === 
2022-12-07 06:19:42,460 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 06:19:42,911 sync - Repository fetch started. 
2022-12-07 06:19:43,023 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 06:19:43,023 sync -   added user name credentials: ChakiSa 
2022-12-07 06:19:43,023 sync -   explicit user name credentials: ChakiSa 
2022-12-07 06:19:43,046 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 06:19:43,092 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 06:19:43,179 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 06:19:43,180 sync -   added user name credentials: ChakiSa 
2022-12-07 06:19:43,180 sync -   explicit user name credentials: ChakiSa 
2022-12-07 06:23:55,019 sync - Restoring refs to reflect SVN state. 
2022-12-07 06:33:41,589 sync - Refs were successfully updated 
2022-12-07 06:33:41,640 sync - Location '1223' fetch completed, fetch took 838691 ms. 
2022-12-07 06:33:41,640 sync - Repository fetch completed, fetch took 838729 ms. 
2022-12-07 06:33:41,655 sync - about to refresh repository 
2022-12-07 06:33:42,454 sync - === 
2022-12-07 06:43:43,122 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 06:43:43,636 sync - Repository fetch started. 
2022-12-07 06:43:43,772 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 06:43:43,772 sync -   added user name credentials: ChakiSa 
2022-12-07 06:43:43,772 sync -   explicit user name credentials: ChakiSa 
2022-12-07 06:43:43,792 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 06:43:43,907 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 06:43:43,967 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 06:43:43,967 sync -   added user name credentials: ChakiSa 
2022-12-07 06:43:43,967 sync -   explicit user name credentials: ChakiSa 
2022-12-07 06:47:44,591 sync - Restoring refs to reflect SVN state. 
2022-12-07 06:57:59,812 sync - Refs were successfully updated 
2022-12-07 06:57:59,885 sync - Location '1223' fetch completed, fetch took 856221 ms. 
2022-12-07 06:57:59,898 sync - Repository fetch completed, fetch took 856257 ms. 
2022-12-07 06:57:59,913 sync - about to refresh repository 
2022-12-07 06:58:00,613 sync - === 
2022-12-07 07:08:01,709 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 07:08:03,015 sync - Repository fetch started. 
2022-12-07 07:08:03,409 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 07:08:03,409 sync -   added user name credentials: ChakiSa 
2022-12-07 07:08:03,409 sync -   explicit user name credentials: ChakiSa 
2022-12-07 07:08:03,483 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 07:08:03,801 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 07:08:04,060 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 07:08:04,468 sync -   added user name credentials: ChakiSa 
2022-12-07 07:08:04,703 sync -   explicit user name credentials: ChakiSa 
2022-12-07 07:12:20,425 sync - Restoring refs to reflect SVN state. 
2022-12-07 07:24:46,376 sync - Refs were successfully updated 
2022-12-07 07:24:46,411 sync - Location '1223' fetch completed, fetch took 1003345 ms. 
2022-12-07 07:24:46,411 sync - Repository fetch completed, fetch took 1003390 ms. 
2022-12-07 07:24:46,426 sync - about to refresh repository 
2022-12-07 07:24:47,221 sync - === 
2022-12-07 07:34:47,958 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 07:34:48,723 sync - Repository fetch started. 
2022-12-07 07:34:48,831 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 07:34:48,831 sync -   added user name credentials: ChakiSa 
2022-12-07 07:34:48,831 sync -   explicit user name credentials: ChakiSa 
2022-12-07 07:34:48,856 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 07:34:48,968 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 07:34:49,218 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 07:34:49,247 sync -   added user name credentials: ChakiSa 
2022-12-07 07:34:49,247 sync -   explicit user name credentials: ChakiSa 
2022-12-07 07:39:44,049 sync - Restoring refs to reflect SVN state. 
2022-12-07 07:50:50,940 sync - Refs were successfully updated 
2022-12-07 07:50:50,981 sync - Location '1223' fetch completed, fetch took 962228 ms. 
2022-12-07 07:50:50,981 sync - Repository fetch completed, fetch took 962253 ms. 
2022-12-07 07:50:50,997 sync - about to refresh repository 
2022-12-07 07:50:51,876 sync - === 
2022-12-07 08:00:52,553 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 08:00:52,988 sync - Repository fetch started. 
2022-12-07 08:00:53,101 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 08:00:53,101 sync -   added user name credentials: ChakiSa 
2022-12-07 08:00:53,101 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:00:53,119 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 08:00:53,198 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 08:00:53,279 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 08:00:53,279 sync -   added user name credentials: ChakiSa 
2022-12-07 08:00:53,279 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:04:57,987 sync - Restoring refs to reflect SVN state. 
2022-12-07 08:15:39,961 sync - Refs were successfully updated 
2022-12-07 08:15:40,010 sync - Location '1223' fetch completed, fetch took 886999 ms. 
2022-12-07 08:15:40,010 sync - Repository fetch completed, fetch took 887022 ms. 
2022-12-07 08:15:40,037 sync - about to refresh repository 
2022-12-07 08:15:40,705 sync - === 
2022-12-07 08:25:41,451 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 08:25:42,196 sync - Repository fetch started. 
2022-12-07 08:25:42,308 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 08:25:42,340 sync -   added user name credentials: ChakiSa 
2022-12-07 08:25:42,340 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:25:42,360 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 08:25:42,549 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 08:25:42,915 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 08:25:43,080 sync -   added user name credentials: ChakiSa 
2022-12-07 08:25:43,080 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:30:02,739 sync - Restoring refs to reflect SVN state. 
2022-12-07 08:41:29,666 sync - Refs were successfully updated 
2022-12-07 08:41:29,706 sync - Location '1223' fetch completed, fetch took 947483 ms. 
2022-12-07 08:41:29,706 sync - Repository fetch completed, fetch took 947510 ms. 
2022-12-07 08:41:29,721 sync - about to refresh repository 
2022-12-07 08:41:30,418 sync - === 
2022-12-07 08:51:31,174 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 08:51:31,617 sync - Repository fetch started. 
2022-12-07 08:51:31,739 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 08:51:31,946 sync -   added user name credentials: ChakiSa 
2022-12-07 08:51:31,946 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:51:31,974 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 08:51:32,121 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 08:51:32,404 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 08:51:32,514 sync -   added user name credentials: ChakiSa 
2022-12-07 08:51:32,514 sync -   explicit user name credentials: ChakiSa 
2022-12-07 08:56:14,286 sync - Restoring refs to reflect SVN state. 
2022-12-07 09:07:40,113 sync - Refs were successfully updated 
2022-12-07 09:07:40,150 sync - Location '1223' fetch completed, fetch took 968514 ms. 
2022-12-07 09:07:40,150 sync - Repository fetch completed, fetch took 968533 ms. 
2022-12-07 09:07:40,165 sync - about to refresh repository 
2022-12-07 09:07:40,831 sync - === 
2022-12-07 09:17:41,708 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 09:17:42,199 sync - Repository fetch started. 
2022-12-07 09:17:42,645 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 09:17:42,645 sync -   added user name credentials: ChakiSa 
2022-12-07 09:17:42,645 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:17:42,663 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 09:17:42,798 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 09:17:42,873 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 09:17:42,873 sync -   added user name credentials: ChakiSa 
2022-12-07 09:17:42,873 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:23:38,911 sync - Restoring refs to reflect SVN state. 
2022-12-07 09:34:53,838 sync - Refs were successfully updated 
2022-12-07 09:34:54,014 sync - Location '1223' fetch completed, fetch took 1031434 ms. 
2022-12-07 09:34:54,014 sync - Repository fetch completed, fetch took 1031479 ms. 
2022-12-07 09:34:54,029 sync - about to refresh repository 
2022-12-07 09:34:54,715 sync - === 
2022-12-07 09:44:55,517 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 09:44:55,994 sync - Repository fetch started. 
2022-12-07 09:44:56,593 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 09:44:56,593 sync -   added user name credentials: ChakiSa 
2022-12-07 09:44:56,593 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:44:56,612 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 09:44:56,846 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 09:44:56,920 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 09:44:56,920 sync -   added user name credentials: ChakiSa 
2022-12-07 09:44:56,920 sync -   explicit user name credentials: ChakiSa 
2022-12-07 09:50:09,973 sync - Restoring refs to reflect SVN state. 
2022-12-07 10:01:10,551 sync - Refs were successfully updated 
2022-12-07 10:01:10,591 sync - Location '1223' fetch completed, fetch took 974090 ms. 
2022-12-07 10:01:10,591 sync - Repository fetch completed, fetch took 974130 ms. 
2022-12-07 10:01:10,611 sync - about to refresh repository 
2022-12-07 10:01:11,296 sync - === 
2022-12-07 10:11:13,138 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 10:11:13,577 sync - Repository fetch started. 
2022-12-07 10:11:13,654 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 10:11:13,654 sync -   added user name credentials: ChakiSa 
2022-12-07 10:11:13,654 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:11:13,668 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 10:11:13,919 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 10:11:13,980 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 10:11:13,980 sync -   added user name credentials: ChakiSa 
2022-12-07 10:11:13,980 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:15:33,910 sync - Restoring refs to reflect SVN state. 
2022-12-07 10:25:42,496 sync - Refs were successfully updated 
2022-12-07 10:25:42,517 sync - Location '1223' fetch completed, fetch took 868921 ms. 
2022-12-07 10:25:42,517 sync - Repository fetch completed, fetch took 868940 ms. 
2022-12-07 10:25:42,532 sync - about to refresh repository 
2022-12-07 10:25:43,210 sync - === 
2022-12-07 10:35:43,838 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 10:35:44,324 sync - Repository fetch started. 
2022-12-07 10:35:44,418 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 10:35:44,418 sync -   added user name credentials: ChakiSa 
2022-12-07 10:35:44,418 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:35:44,442 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 10:35:44,565 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 10:35:44,637 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 10:35:44,637 sync -   added user name credentials: ChakiSa 
2022-12-07 10:35:44,637 sync -   explicit user name credentials: ChakiSa 
2022-12-07 10:40:28,040 sync - Restoring refs to reflect SVN state. 
2022-12-07 10:51:27,542 sync - Refs were successfully updated 
2022-12-07 10:51:27,568 sync - Location '1223' fetch completed, fetch took 943218 ms. 
2022-12-07 10:51:27,568 sync - Repository fetch completed, fetch took 943244 ms. 
2022-12-07 10:51:27,587 sync - about to refresh repository 
2022-12-07 10:51:28,208 sync - === 
2022-12-07 11:01:29,002 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 11:01:29,554 sync - Repository fetch started. 
2022-12-07 11:01:29,767 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 11:01:29,767 sync -   added user name credentials: ChakiSa 
2022-12-07 11:01:29,767 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:01:29,786 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 11:01:29,957 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 11:01:30,307 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 11:01:30,499 sync -   added user name credentials: ChakiSa 
2022-12-07 11:01:30,499 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:06:10,937 sync - Restoring refs to reflect SVN state. 
2022-12-07 11:17:52,631 sync - Refs were successfully updated 
2022-12-07 11:17:52,657 sync - Location '1223' fetch completed, fetch took 982992 ms. 
2022-12-07 11:17:52,657 sync - Repository fetch completed, fetch took 983034 ms. 
2022-12-07 11:17:52,671 sync - about to refresh repository 
2022-12-07 11:17:53,364 sync - === 
2022-12-07 11:27:54,110 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 11:27:54,543 sync - Repository fetch started. 
2022-12-07 11:27:55,184 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 11:27:55,185 sync -   added user name credentials: ChakiSa 
2022-12-07 11:27:55,185 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:27:55,209 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 11:27:55,422 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 11:27:55,495 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 11:27:55,495 sync -   added user name credentials: ChakiSa 
2022-12-07 11:27:55,495 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:32:21,048 sync - Restoring refs to reflect SVN state. 
2022-12-07 11:42:42,676 sync - Refs were successfully updated 
2022-12-07 11:42:42,703 sync - Location '1223' fetch completed, fetch took 887610 ms. 
2022-12-07 11:42:42,703 sync - Repository fetch completed, fetch took 887632 ms. 
2022-12-07 11:42:42,717 sync - about to refresh repository 
2022-12-07 11:42:43,297 sync - === 
2022-12-07 11:52:44,044 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 11:52:44,487 sync - Repository fetch started. 
2022-12-07 11:52:44,592 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 11:52:44,592 sync -   added user name credentials: ChakiSa 
2022-12-07 11:52:44,592 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:52:44,609 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 11:52:44,818 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 11:52:44,890 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 11:52:45,021 sync -   added user name credentials: ChakiSa 
2022-12-07 11:52:45,021 sync -   explicit user name credentials: ChakiSa 
2022-12-07 11:57:21,207 sync - Restoring refs to reflect SVN state. 
2022-12-07 12:07:41,968 sync - Refs were successfully updated 
2022-12-07 12:07:41,992 sync - Location '1223' fetch completed, fetch took 897481 ms. 
2022-12-07 12:07:41,992 sync - Repository fetch completed, fetch took 897505 ms. 
2022-12-07 12:07:42,006 sync - about to refresh repository 
2022-12-07 12:07:42,580 sync - === 
2022-12-07 12:17:43,314 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 12:17:43,846 sync - Repository fetch started. 
2022-12-07 12:17:44,031 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 12:17:44,031 sync -   added user name credentials: ChakiSa 
2022-12-07 12:17:44,031 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:17:44,047 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 12:17:44,230 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 12:17:44,445 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 12:17:44,803 sync -   added user name credentials: ChakiSa 
2022-12-07 12:17:44,803 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:21:54,596 sync - Restoring refs to reflect SVN state. 
2022-12-07 12:31:41,586 sync - Refs were successfully updated 
2022-12-07 12:31:41,608 sync - Location '1223' fetch completed, fetch took 837664 ms. 
2022-12-07 12:31:41,608 sync - Repository fetch completed, fetch took 837686 ms. 
2022-12-07 12:31:41,622 sync - about to refresh repository 
2022-12-07 12:31:42,255 sync - === 
2022-12-07 12:41:43,008 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 12:41:43,460 sync - Repository fetch started. 
2022-12-07 12:41:43,581 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 12:41:43,581 sync -   added user name credentials: ChakiSa 
2022-12-07 12:41:43,581 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:41:43,597 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 12:41:43,769 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 12:41:44,640 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 12:41:44,640 sync -   added user name credentials: ChakiSa 
2022-12-07 12:41:44,640 sync -   explicit user name credentials: ChakiSa 
2022-12-07 12:46:05,180 sync - Restoring refs to reflect SVN state. 
2022-12-07 12:56:28,505 sync - Refs were successfully updated 
2022-12-07 12:56:28,550 sync - Location '1223' fetch completed, fetch took 885035 ms. 
2022-12-07 12:56:28,941 sync - Repository fetch completed, fetch took 885481 ms. 
2022-12-07 12:56:28,958 sync - about to refresh repository 
2022-12-07 12:56:29,639 sync - === 
2022-12-07 13:06:30,329 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 13:06:30,805 sync - Repository fetch started. 
2022-12-07 13:06:30,901 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 13:06:30,901 sync -   added user name credentials: ChakiSa 
2022-12-07 13:06:30,901 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:06:30,920 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 13:06:31,114 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 13:06:31,224 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 13:06:31,392 sync -   added user name credentials: ChakiSa 
2022-12-07 13:06:31,392 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:10:54,971 sync - Restoring refs to reflect SVN state. 
2022-12-07 13:23:50,869 sync - Refs were successfully updated 
2022-12-07 13:23:50,894 sync - Location '1223' fetch completed, fetch took 1040062 ms. 
2022-12-07 13:23:50,894 sync - Repository fetch completed, fetch took 1040089 ms. 
2022-12-07 13:23:50,912 sync - about to refresh repository 
2022-12-07 13:23:51,625 sync - === 
2022-12-07 13:33:52,367 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 13:33:53,051 sync - Repository fetch started. 
2022-12-07 13:33:53,162 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 13:33:53,162 sync -   added user name credentials: ChakiSa 
2022-12-07 13:33:53,162 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:33:53,179 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 13:33:53,392 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 13:33:53,728 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 13:33:53,728 sync -   added user name credentials: ChakiSa 
2022-12-07 13:33:53,728 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:37:57,123 sync - Restoring refs to reflect SVN state. 
2022-12-07 13:48:07,140 sync - Refs were successfully updated 
2022-12-07 13:48:07,207 sync - Location '1223' fetch completed, fetch took 854131 ms. 
2022-12-07 13:48:07,274 sync - Repository fetch completed, fetch took 854223 ms. 
2022-12-07 13:48:07,290 sync - about to refresh repository 
2022-12-07 13:48:07,894 sync - === 
2022-12-07 13:58:08,654 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 13:58:09,380 sync - Repository fetch started. 
2022-12-07 13:58:09,509 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 13:58:10,004 sync -   added user name credentials: ChakiSa 
2022-12-07 13:58:10,004 sync -   explicit user name credentials: ChakiSa 
2022-12-07 13:58:10,023 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 13:58:10,325 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 13:58:10,392 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 13:58:10,392 sync -   added user name credentials: ChakiSa 
2022-12-07 13:58:10,392 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:02:17,355 sync - Restoring refs to reflect SVN state. 
2022-12-07 14:12:47,739 sync - Refs were successfully updated 
2022-12-07 14:12:47,761 sync - Location '1223' fetch completed, fetch took 878353 ms. 
2022-12-07 14:12:47,761 sync - Repository fetch completed, fetch took 878381 ms. 
2022-12-07 14:12:47,782 sync - about to refresh repository 
2022-12-07 14:12:48,513 sync - === 
2022-12-07 14:22:49,109 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 14:22:49,477 sync - Repository fetch started. 
2022-12-07 14:22:49,654 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 14:22:49,654 sync -   added user name credentials: ChakiSa 
2022-12-07 14:22:49,654 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:22:49,669 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 14:22:50,119 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 14:22:50,352 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 14:22:51,112 sync -   added user name credentials: ChakiSa 
2022-12-07 14:22:51,112 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:26:43,203 sync - Restoring refs to reflect SVN state. 
2022-12-07 14:35:57,136 sync - Refs were successfully updated 
2022-12-07 14:35:57,267 sync - Location '1223' fetch completed, fetch took 787674 ms. 
2022-12-07 14:35:57,267 sync - Repository fetch completed, fetch took 787699 ms. 
2022-12-07 14:35:57,282 sync - about to refresh repository 
2022-12-07 14:35:57,982 sync - === 
2022-12-07 14:45:59,012 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 14:45:59,432 sync - Repository fetch started. 
2022-12-07 14:45:59,522 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 14:45:59,522 sync -   added user name credentials: ChakiSa 
2022-12-07 14:45:59,522 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:45:59,537 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 14:45:59,823 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 14:46:00,012 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 14:46:00,012 sync -   added user name credentials: ChakiSa 
2022-12-07 14:46:00,012 sync -   explicit user name credentials: ChakiSa 
2022-12-07 14:49:59,535 sync - Restoring refs to reflect SVN state. 
2022-12-07 15:00:41,697 sync - Refs were successfully updated 
2022-12-07 15:00:41,795 sync - Location '1223' fetch completed, fetch took 882340 ms. 
2022-12-07 15:00:41,795 sync - Repository fetch completed, fetch took 882363 ms. 
2022-12-07 15:00:41,812 sync - about to refresh repository 
2022-12-07 15:00:43,573 sync - === 
2022-12-07 15:10:47,423 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 15:10:47,826 sync - Repository fetch started. 
2022-12-07 15:10:47,974 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 15:10:48,001 sync -   added user name credentials: ChakiSa 
2022-12-07 15:10:48,001 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:10:48,018 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 15:10:48,264 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 15:10:48,506 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 15:10:48,506 sync -   added user name credentials: ChakiSa 
2022-12-07 15:10:48,506 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:14:49,281 sync - Restoring refs to reflect SVN state. 
2022-12-07 15:25:25,391 sync - Refs were successfully updated 
2022-12-07 15:25:25,418 sync - Location '1223' fetch completed, fetch took 877541 ms. 
2022-12-07 15:25:25,418 sync - Repository fetch completed, fetch took 877592 ms. 
2022-12-07 15:25:25,435 sync - about to refresh repository 
2022-12-07 15:25:26,189 sync - === 
2022-12-07 15:35:26,920 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 15:35:27,404 sync - Repository fetch started. 
2022-12-07 15:35:27,507 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 15:35:27,507 sync -   added user name credentials: ChakiSa 
2022-12-07 15:35:27,507 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:35:27,522 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 15:35:27,844 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 15:35:27,943 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 15:35:27,994 sync -   added user name credentials: ChakiSa 
2022-12-07 15:35:27,994 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:39:21,251 sync - Restoring refs to reflect SVN state. 
2022-12-07 15:49:08,264 sync - Refs were successfully updated 
2022-12-07 15:49:08,293 sync - Location '1223' fetch completed, fetch took 820869 ms. 
2022-12-07 15:49:08,293 sync - Repository fetch completed, fetch took 820889 ms. 
2022-12-07 15:49:08,312 sync - about to refresh repository 
2022-12-07 15:49:08,946 sync - === 
2022-12-07 15:59:09,559 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 15:59:09,947 sync - Repository fetch started. 
2022-12-07 15:59:10,070 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 15:59:10,129 sync -   added user name credentials: ChakiSa 
2022-12-07 15:59:10,129 sync -   explicit user name credentials: ChakiSa 
2022-12-07 15:59:10,148 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 15:59:10,627 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 15:59:10,782 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 15:59:10,825 sync -   added user name credentials: ChakiSa 
2022-12-07 15:59:10,825 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:03:02,273 sync - Restoring refs to reflect SVN state. 
2022-12-07 16:13:09,092 sync - Refs were successfully updated 
2022-12-07 16:13:09,148 sync - Location '1223' fetch completed, fetch took 839180 ms. 
2022-12-07 16:13:09,148 sync - Repository fetch completed, fetch took 839201 ms. 
2022-12-07 16:13:09,165 sync - about to refresh repository 
2022-12-07 16:13:09,747 sync - === 
2022-12-07 16:23:10,462 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 16:23:10,950 sync - Repository fetch started. 
2022-12-07 16:23:11,241 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 16:23:11,241 sync -   added user name credentials: ChakiSa 
2022-12-07 16:23:11,241 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:23:11,260 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 16:23:11,582 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 16:23:11,647 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 16:23:11,669 sync -   added user name credentials: ChakiSa 
2022-12-07 16:23:11,669 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:27:14,287 sync - Restoring refs to reflect SVN state. 
2022-12-07 16:37:26,908 sync - Refs were successfully updated 
2022-12-07 16:37:26,947 sync - Location '1223' fetch completed, fetch took 855800 ms. 
2022-12-07 16:37:26,948 sync - Repository fetch completed, fetch took 855826 ms. 
2022-12-07 16:37:26,962 sync - about to refresh repository 
2022-12-07 16:37:27,645 sync - === 
2022-12-07 16:47:29,580 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 16:47:30,091 sync - Repository fetch started. 
2022-12-07 16:47:30,545 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 16:47:30,545 sync -   added user name credentials: ChakiSa 
2022-12-07 16:47:30,545 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:47:30,562 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 16:47:30,881 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 16:47:30,948 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 16:47:30,948 sync -   added user name credentials: ChakiSa 
2022-12-07 16:47:30,948 sync -   explicit user name credentials: ChakiSa 
2022-12-07 16:51:43,640 sync - Restoring refs to reflect SVN state. 
2022-12-07 17:02:11,933 sync - Refs were successfully updated 
2022-12-07 17:02:13,244 sync - Location '1223' fetch completed, fetch took 882766 ms. 
2022-12-07 17:02:13,258 sync - Repository fetch completed, fetch took 882800 ms. 
2022-12-07 17:02:13,274 sync - about to refresh repository 
2022-12-07 17:02:13,956 sync - === 
2022-12-07 17:12:15,051 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 17:12:15,827 sync - Repository fetch started. 
2022-12-07 17:12:15,944 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 17:12:15,944 sync -   added user name credentials: ChakiSa 
2022-12-07 17:12:15,944 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:12:15,962 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 17:12:16,315 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 17:12:16,494 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 17:12:16,626 sync -   added user name credentials: ChakiSa 
2022-12-07 17:12:16,626 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:16:34,122 sync - Restoring refs to reflect SVN state. 
2022-12-07 17:28:41,689 sync - Refs were successfully updated 
2022-12-07 17:28:41,797 sync - Location '1223' fetch completed, fetch took 985948 ms. 
2022-12-07 17:28:41,800 sync - Repository fetch completed, fetch took 985973 ms. 
2022-12-07 17:28:41,818 sync - about to refresh repository 
2022-12-07 17:28:42,490 sync - === 
2022-12-07 17:38:43,311 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 17:38:43,789 sync - Repository fetch started. 
2022-12-07 17:38:44,106 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 17:38:44,106 sync -   added user name credentials: ChakiSa 
2022-12-07 17:38:44,106 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:38:44,122 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 17:38:44,675 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 17:38:44,750 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 17:38:44,750 sync -   added user name credentials: ChakiSa 
2022-12-07 17:38:44,750 sync -   explicit user name credentials: ChakiSa 
2022-12-07 17:42:50,894 sync - Restoring refs to reflect SVN state. 
2022-12-07 17:53:19,933 sync - Refs were successfully updated 
2022-12-07 17:53:19,956 sync - Location '1223' fetch completed, fetch took 875934 ms. 
2022-12-07 17:53:19,956 sync - Repository fetch completed, fetch took 875957 ms. 
2022-12-07 17:53:19,973 sync - about to refresh repository 
2022-12-07 17:53:20,655 sync - === 
2022-12-07 18:03:21,464 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 18:03:21,914 sync - Repository fetch started. 
2022-12-07 18:03:22,291 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 18:03:22,363 sync -   added user name credentials: ChakiSa 
2022-12-07 18:03:22,363 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:03:22,381 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 18:03:22,649 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 18:03:22,861 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 18:03:22,861 sync -   added user name credentials: ChakiSa 
2022-12-07 18:03:22,861 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:08:12,478 sync - Restoring refs to reflect SVN state. 
2022-12-07 18:20:26,326 sync - Refs were successfully updated 
2022-12-07 18:20:26,378 sync - Location '1223' fetch completed, fetch took 1024181 ms. 
2022-12-07 18:20:26,378 sync - Repository fetch completed, fetch took 1024214 ms. 
2022-12-07 18:20:26,393 sync - about to refresh repository 
2022-12-07 18:20:27,141 sync - === 
2022-12-07 18:30:33,414 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 18:30:33,999 sync - Repository fetch started. 
2022-12-07 18:30:34,113 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 18:30:34,113 sync -   added user name credentials: ChakiSa 
2022-12-07 18:30:34,113 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:30:34,150 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 18:30:34,568 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 18:30:34,842 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 18:30:34,977 sync -   added user name credentials: ChakiSa 
2022-12-07 18:30:34,977 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:36:04,246 sync - Restoring refs to reflect SVN state. 
2022-12-07 18:46:45,701 sync - Refs were successfully updated 
2022-12-07 18:46:45,982 sync - Location '1223' fetch completed, fetch took 971960 ms. 
2022-12-07 18:46:45,982 sync - Repository fetch completed, fetch took 971983 ms. 
2022-12-07 18:46:45,996 sync - about to refresh repository 
2022-12-07 18:46:46,687 sync - === 
2022-12-07 18:56:47,417 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 18:56:48,001 sync - Repository fetch started. 
2022-12-07 18:56:48,116 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 18:56:48,116 sync -   added user name credentials: ChakiSa 
2022-12-07 18:56:48,116 sync -   explicit user name credentials: ChakiSa 
2022-12-07 18:56:48,148 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 18:56:48,654 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 18:56:48,987 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 18:56:49,479 sync -   added user name credentials: ChakiSa 
2022-12-07 18:56:49,479 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:01:35,016 sync - Restoring refs to reflect SVN state. 
2022-12-07 19:13:09,983 sync - Refs were successfully updated 
2022-12-07 19:13:10,010 sync - Location '1223' fetch completed, fetch took 981987 ms. 
2022-12-07 19:13:10,010 sync - Repository fetch completed, fetch took 982009 ms. 
2022-12-07 19:13:10,023 sync - about to refresh repository 
2022-12-07 19:13:10,719 sync - === 
2022-12-07 19:23:11,495 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 19:23:11,994 sync - Repository fetch started. 
2022-12-07 19:23:12,158 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 19:23:12,276 sync -   added user name credentials: ChakiSa 
2022-12-07 19:23:12,276 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:23:12,337 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 19:23:14,064 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 19:23:14,202 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 19:23:14,202 sync -   added user name credentials: ChakiSa 
2022-12-07 19:23:14,202 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:27:45,430 sync - Restoring refs to reflect SVN state. 
2022-12-07 19:39:07,857 sync - Refs were successfully updated 
2022-12-07 19:39:07,887 sync - Location '1223' fetch completed, fetch took 955853 ms. 
2022-12-07 19:39:07,887 sync - Repository fetch completed, fetch took 955893 ms. 
2022-12-07 19:39:07,902 sync - about to refresh repository 
2022-12-07 19:39:08,583 sync - === 
2022-12-07 19:49:09,214 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 19:49:09,690 sync - Repository fetch started. 
2022-12-07 19:49:09,802 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 19:49:09,802 sync -   added user name credentials: ChakiSa 
2022-12-07 19:49:09,802 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:49:09,849 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 19:49:10,257 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 19:49:10,323 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 19:49:10,443 sync -   added user name credentials: ChakiSa 
2022-12-07 19:49:10,443 sync -   explicit user name credentials: ChakiSa 
2022-12-07 19:53:18,973 sync - Restoring refs to reflect SVN state. 
2022-12-07 20:03:58,925 sync - Refs were successfully updated 
2022-12-07 20:03:58,948 sync - Location '1223' fetch completed, fetch took 889232 ms. 
2022-12-07 20:03:58,948 sync - Repository fetch completed, fetch took 889258 ms. 
2022-12-07 20:03:58,966 sync - about to refresh repository 
2022-12-07 20:04:01,113 sync - === 
2022-12-07 20:14:05,151 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 20:14:05,760 sync - Repository fetch started. 
2022-12-07 20:14:05,922 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 20:14:05,922 sync -   added user name credentials: ChakiSa 
2022-12-07 20:14:05,922 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:14:05,937 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 20:14:06,311 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 20:14:06,419 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 20:14:06,419 sync -   added user name credentials: ChakiSa 
2022-12-07 20:14:06,419 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:19:01,246 sync - Restoring refs to reflect SVN state. 
2022-12-07 20:30:48,680 sync - Refs were successfully updated 
2022-12-07 20:30:48,705 sync - Location '1223' fetch completed, fetch took 1002896 ms. 
2022-12-07 20:30:48,705 sync - Repository fetch completed, fetch took 1002944 ms. 
2022-12-07 20:30:48,721 sync - about to refresh repository 
2022-12-07 20:30:49,585 sync - === 
2022-12-07 20:40:52,004 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 20:40:52,494 sync - Repository fetch started. 
2022-12-07 20:40:52,666 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 20:40:53,041 sync -   added user name credentials: ChakiSa 
2022-12-07 20:40:53,041 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:40:53,060 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 20:40:53,616 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 20:40:53,707 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 20:40:53,707 sync -   added user name credentials: ChakiSa 
2022-12-07 20:40:53,707 sync -   explicit user name credentials: ChakiSa 
2022-12-07 20:45:46,619 sync - Restoring refs to reflect SVN state. 
2022-12-07 20:56:58,190 sync - Refs were successfully updated 
2022-12-07 20:56:58,219 sync - Location '1223' fetch completed, fetch took 965700 ms. 
2022-12-07 20:56:58,219 sync - Repository fetch completed, fetch took 965725 ms. 
2022-12-07 20:56:58,234 sync - about to refresh repository 
2022-12-07 20:56:59,204 sync - === 
2022-12-07 21:06:59,861 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 21:07:00,480 sync - Repository fetch started. 
2022-12-07 21:07:00,587 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 21:07:00,587 sync -   added user name credentials: ChakiSa 
2022-12-07 21:07:00,587 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:07:00,621 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 21:07:02,070 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 21:07:02,473 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 21:07:02,473 sync -   added user name credentials: ChakiSa 
2022-12-07 21:07:02,543 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:11:32,720 sync - Restoring refs to reflect SVN state. 
2022-12-07 21:24:09,363 sync - Refs were successfully updated 
2022-12-07 21:24:09,426 sync - Location '1223' fetch completed, fetch took 1028924 ms. 
2022-12-07 21:24:09,426 sync - Repository fetch completed, fetch took 1028945 ms. 
2022-12-07 21:24:09,469 sync - about to refresh repository 
2022-12-07 21:24:10,932 sync - === 
2022-12-07 21:34:11,902 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 21:34:12,435 sync - Repository fetch started. 
2022-12-07 21:34:12,576 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 21:34:12,576 sync -   added user name credentials: ChakiSa 
2022-12-07 21:34:12,576 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:34:12,592 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 21:34:12,950 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 21:34:13,498 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 21:34:13,498 sync -   added user name credentials: ChakiSa 
2022-12-07 21:34:13,498 sync -   explicit user name credentials: ChakiSa 
2022-12-07 21:38:49,939 sync - Restoring refs to reflect SVN state. 
2022-12-07 21:50:38,672 sync - Refs were successfully updated 
2022-12-07 21:50:38,714 sync - Location '1223' fetch completed, fetch took 986246 ms. 
2022-12-07 21:50:38,714 sync - Repository fetch completed, fetch took 986279 ms. 
2022-12-07 21:50:38,731 sync - about to refresh repository 
2022-12-07 21:50:39,771 sync - === 
2022-12-07 22:00:40,703 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 22:00:41,187 sync - Repository fetch started. 
2022-12-07 22:00:41,681 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 22:00:41,681 sync -   added user name credentials: ChakiSa 
2022-12-07 22:00:41,681 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:00:41,698 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 22:00:42,202 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 22:00:42,312 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 22:00:42,312 sync -   added user name credentials: ChakiSa 
2022-12-07 22:00:42,312 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:06:06,014 sync - Restoring refs to reflect SVN state. 
2022-12-07 22:19:09,608 sync - Refs were successfully updated 
2022-12-07 22:19:09,812 sync - Location '1223' fetch completed, fetch took 1108206 ms. 
2022-12-07 22:19:09,812 sync - Repository fetch completed, fetch took 1108263 ms. 
2022-12-07 22:19:09,827 sync - about to refresh repository 
2022-12-07 22:19:10,674 sync - === 
2022-12-07 22:29:11,601 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 22:29:12,228 sync - Repository fetch started. 
2022-12-07 22:29:12,522 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 22:29:12,568 sync -   added user name credentials: ChakiSa 
2022-12-07 22:29:12,568 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:29:12,638 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 22:29:13,190 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 22:29:13,505 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 22:29:13,526 sync -   added user name credentials: ChakiSa 
2022-12-07 22:29:13,526 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:33:18,581 sync - Restoring refs to reflect SVN state. 
2022-12-07 22:44:39,190 sync - Refs were successfully updated 
2022-12-07 22:44:39,236 sync - Location '1223' fetch completed, fetch took 926964 ms. 
2022-12-07 22:44:39,236 sync - Repository fetch completed, fetch took 927008 ms. 
2022-12-07 22:44:39,249 sync - about to refresh repository 
2022-12-07 22:44:40,106 sync - === 
2022-12-07 22:54:40,889 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 22:54:41,346 sync - Repository fetch started. 
2022-12-07 22:54:41,454 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 22:54:41,454 sync -   added user name credentials: ChakiSa 
2022-12-07 22:54:41,454 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:54:41,503 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 22:54:41,914 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 22:54:42,059 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 22:54:42,145 sync -   added user name credentials: ChakiSa 
2022-12-07 22:54:42,145 sync -   explicit user name credentials: ChakiSa 
2022-12-07 22:59:35,819 sync - Restoring refs to reflect SVN state. 
2022-12-07 23:11:27,535 sync - Refs were successfully updated 
2022-12-07 23:11:27,563 sync - Location '1223' fetch completed, fetch took 1006191 ms. 
2022-12-07 23:11:27,563 sync - Repository fetch completed, fetch took 1006217 ms. 
2022-12-07 23:11:27,580 sync - about to refresh repository 
2022-12-07 23:11:28,270 sync - === 
2022-12-07 23:21:29,033 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 23:21:29,504 sync - Repository fetch started. 
2022-12-07 23:21:29,608 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 23:21:29,768 sync -   added user name credentials: ChakiSa 
2022-12-07 23:21:29,768 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:21:29,802 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 23:21:30,328 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 23:21:30,451 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 23:21:30,451 sync -   added user name credentials: ChakiSa 
2022-12-07 23:21:30,451 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:25:53,439 sync - Restoring refs to reflect SVN state. 
2022-12-07 23:36:54,888 sync - Refs were successfully updated 
2022-12-07 23:36:54,924 sync - Location '1223' fetch completed, fetch took 925396 ms. 
2022-12-07 23:36:54,924 sync - Repository fetch completed, fetch took 925420 ms. 
2022-12-07 23:36:54,943 sync - about to refresh repository 
2022-12-07 23:36:55,727 sync - === 
2022-12-07 23:46:56,413 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-07 23:46:56,814 sync - Repository fetch started. 
2022-12-07 23:46:56,954 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 23:46:56,975 sync -   added user name credentials: ChakiSa 
2022-12-07 23:46:56,975 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:46:57,003 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-07 23:46:57,343 sync - Revisions: <fetched=85119; last=85116> 
2022-12-07 23:46:57,473 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-07 23:46:57,525 sync -   added user name credentials: ChakiSa 
2022-12-07 23:46:57,525 sync -   explicit user name credentials: ChakiSa 
2022-12-07 23:50:54,330 sync - Restoring refs to reflect SVN state. 
2022-12-08 00:01:05,332 sync - Refs were successfully updated 
2022-12-08 00:01:05,355 sync - Location '1223' fetch completed, fetch took 848472 ms. 
2022-12-08 00:01:05,355 sync - Repository fetch completed, fetch took 848499 ms. 
2022-12-08 00:01:05,369 sync - about to refresh repository 
2022-12-08 00:01:06,060 sync - === 
2022-12-08 00:11:06,724 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 00:11:07,165 sync - Repository fetch started. 
2022-12-08 00:11:07,308 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 00:11:07,337 sync -   added user name credentials: ChakiSa 
2022-12-08 00:11:07,337 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:11:07,401 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-08 00:11:07,859 sync - Revisions: <fetched=85119; last=85116> 
2022-12-08 00:11:08,018 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 00:11:08,077 sync -   added user name credentials: ChakiSa 
2022-12-08 00:11:08,077 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:15:14,689 sync - Restoring refs to reflect SVN state. 
2022-12-08 00:25:52,040 sync - Refs were successfully updated 
2022-12-08 00:25:52,065 sync - Location '1223' fetch completed, fetch took 884832 ms. 
2022-12-08 00:25:52,065 sync - Repository fetch completed, fetch took 884860 ms. 
2022-12-08 00:25:52,079 sync - about to refresh repository 
2022-12-08 00:25:52,770 sync - === 
2022-12-08 00:35:53,442 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 00:35:53,932 sync - Repository fetch started. 
2022-12-08 00:35:54,336 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 00:35:54,336 sync -   added user name credentials: ChakiSa 
2022-12-08 00:35:54,336 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:35:54,353 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-08 00:35:54,852 sync - Revisions: <fetched=85119; last=85116> 
2022-12-08 00:35:54,939 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 00:35:54,939 sync -   added user name credentials: ChakiSa 
2022-12-08 00:35:54,939 sync -   explicit user name credentials: ChakiSa 
2022-12-08 00:39:52,385 sync - Restoring refs to reflect SVN state. 
2022-12-08 00:50:32,344 sync - Refs were successfully updated 
2022-12-08 00:50:32,371 sync - Location '1223' fetch completed, fetch took 878104 ms. 
2022-12-08 00:50:32,371 sync - Repository fetch completed, fetch took 878128 ms. 
2022-12-08 00:50:32,386 sync - about to refresh repository 
2022-12-08 00:50:33,102 sync - === 
2022-12-08 01:00:33,750 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 01:00:34,152 sync - Repository fetch started. 
2022-12-08 01:00:34,265 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 01:00:34,265 sync -   added user name credentials: ChakiSa 
2022-12-08 01:00:34,265 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:00:34,286 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-08 01:00:35,834 sync - Revisions: <fetched=85119; last=85116> 
2022-12-08 01:00:35,919 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 01:00:35,991 sync -   added user name credentials: ChakiSa 
2022-12-08 01:00:35,991 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:04:49,198 sync - Restoring refs to reflect SVN state. 
2022-12-08 01:14:50,380 sync - Refs were successfully updated 
2022-12-08 01:14:50,405 sync - Location '1223' fetch completed, fetch took 856233 ms. 
2022-12-08 01:14:50,405 sync - Repository fetch completed, fetch took 856253 ms. 
2022-12-08 01:14:50,422 sync - about to refresh repository 
2022-12-08 01:14:51,081 sync - === 
2022-12-08 01:24:52,152 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 01:24:53,132 sync - Repository fetch started. 
2022-12-08 01:24:53,280 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 01:24:53,280 sync -   added user name credentials: ChakiSa 
2022-12-08 01:24:53,280 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:24:53,306 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-08 01:24:53,662 sync - Revisions: <fetched=85119; last=85116> 
2022-12-08 01:24:53,788 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 01:24:53,788 sync -   added user name credentials: ChakiSa 
2022-12-08 01:24:53,788 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:29:40,957 sync - Restoring refs to reflect SVN state. 
2022-12-08 01:39:34,875 sync - Refs were successfully updated 
2022-12-08 01:39:34,904 sync - Location '1223' fetch completed, fetch took 881746 ms. 
2022-12-08 01:39:34,904 sync - Repository fetch completed, fetch took 881770 ms. 
2022-12-08 01:39:34,919 sync - about to refresh repository 
2022-12-08 01:39:35,466 sync - === 
2022-12-08 01:49:36,129 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 01:49:36,592 sync - Repository fetch started. 
2022-12-08 01:49:36,747 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 01:49:36,747 sync -   added user name credentials: ChakiSa 
2022-12-08 01:49:36,747 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:49:36,773 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-08 01:49:37,022 sync - Revisions: <fetched=85119; last=85116> 
2022-12-08 01:49:37,250 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 01:49:37,338 sync -   added user name credentials: ChakiSa 
2022-12-08 01:49:37,338 sync -   explicit user name credentials: ChakiSa 
2022-12-08 01:54:17,304 sync - Restoring refs to reflect SVN state. 
2022-12-08 02:06:04,627 sync - Refs were successfully updated 
2022-12-08 02:06:04,751 sync - Location '1223' fetch completed, fetch took 988135 ms. 
2022-12-08 02:06:04,751 sync - Repository fetch completed, fetch took 988159 ms. 
2022-12-08 02:06:04,765 sync - about to refresh repository 
2022-12-08 02:06:05,724 sync - === 
2022-12-08 02:16:06,345 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 02:16:06,743 sync - Repository fetch started. 
2022-12-08 02:16:06,895 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 02:16:06,895 sync -   added user name credentials: ChakiSa 
2022-12-08 02:16:06,895 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:16:06,923 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-08 02:16:07,323 sync - Revisions: <fetched=85119; last=85116> 
2022-12-08 02:16:07,449 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 02:16:07,509 sync -   added user name credentials: ChakiSa 
2022-12-08 02:16:07,509 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:20:20,361 sync - Restoring refs to reflect SVN state. 
2022-12-08 02:30:23,235 sync - Refs were successfully updated 
2022-12-08 02:30:23,298 sync - Location '1223' fetch completed, fetch took 856527 ms. 
2022-12-08 02:30:23,298 sync - Repository fetch completed, fetch took 856555 ms. 
2022-12-08 02:30:23,312 sync - about to refresh repository 
2022-12-08 02:30:23,919 sync - === 
2022-12-08 02:40:25,268 sync - server 7.21.3 7021003; add-on 4.0.7; cluster has 2 nodes 
2022-12-08 02:40:25,797 sync - Repository fetch started. 
2022-12-08 02:40:25,908 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 02:40:26,039 sync -   added user name credentials: ChakiSa 
2022-12-08 02:40:26,039 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:40:26,058 sync - Checking remote 'http://yyyyy.com/svn/build'. 
2022-12-08 02:40:26,544 sync - Revisions: <fetched=85119; last=85116> 
2022-12-08 02:40:26,618 sync - svn authentication manager for ''http://yyyyy.com/svn/build'' 
2022-12-08 02:40:26,618 sync -   added user name credentials: ChakiSa 
2022-12-08 02:40:26,618 sync -   explicit user name credentials: ChakiSa 
2022-12-08 02:44:11,001 sync - Restoring refs to reflect SVN state. 

Thanks,
Sitaram

Hi Sitaram,

thank you for the logs.

I’m afraid though, that these logs are not detailed enough and provide very little information about the issue. There’s a strange pause during a regular sync:

2022-12-07 11:06:10,937 sync - Restoring refs to reflect SVN state. 
2022-12-07 11:17:52,631 sync - Refs were successfully updated 

but it’s not clear what is happening during that time. May I ask you to enable debug logging in Administration - SVN Mirror - Global SVN Mirror Settings - Add-on Settings - Troubleshooting - Enable debug logging and, if possible, also collect sack trace with the following command:

jstack -l <Bitbucket process PID>

the command should be invoked on every Bitbucket server in the cluster.

Hi Ildar,

Let me create another ticket for the options to speed up the sync

I am unable to create a branch in any of the migrated repository as it fails with the following error.

The sync was not in progress for that specific repository but it still fails saying “the server is busy with ongoing svn/git synchronisation, try again later” and then the sync starts even though the poll is set for one hour.
The next poll is supposed to be at 15:30 PM but as soon as I try to create a branch, the sync starts immediately when the time was 14:40 PM.

Is it normal for any such actions (creating branch, etc) cannot be performed while the sync is in progress?

Thanks,
Sitaram

Hello Sitaram,

when a new change is being pushed to a mirrored repository, SVN Mirror add-on first tries to synchronise SVN and Bitbucket to avoid any inconsistencies, for cases when there are new changes in SVN that have not yet been synchronized. Having the “the server is busy" message is also more or less expected since the add-on does not allow to make changes to the repository while a synchronization is running. The strange thing here is that the synchronization take that long time and writes almost nothing to logs, but as we decided to have another ticket for this issue, I’d suggest continuing with the discussion in that topic.