Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Robert Verkerk
B2SAFE Core
Commits
e0e10d7a
Unverified
Commit
e0e10d7a
authored
Nov 09, 2017
by
ccacciari
Committed by
GitHub
Nov 09, 2017
Browse files
Merge pull request #106 from cookie33/bugfix
Bugfix. make sure EUDAT/REPLICA is added only once if it is the same.
parents
0f938f62
0ebc1839
Changes
1
Hide whitespace changes
Inline
Side-by-side
rulebase/pid-service.re
View file @
e0e10d7a
...
...
@@ -191,7 +191,12 @@ EUDATUpdatePIDWithNewChild(*parentPID, *childPID) {
*
replicaNew
=
*
childPID
;
}
else
{
*
replicaNew
=
*
replica
++
","
++
*
childPID
;
if
(
*
replica
like
"*"
++*
childPID
++
"*"
)
{
*
replicaNew
=
*
replica
;
}
else
{
*
replicaNew
=
*
replica
++
","
++
*
childPID
;
}
}
msiExecCmd
(
"epicclient.py"
,
"*credStoreType *credStorePath modify *parentPID EUDAT/REPLICA *replicaNew"
,
"null"
,
"null"
,
"null"
,
*
outUPwNC
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment