Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
8a24395f
Commit
8a24395f
authored
6 years ago
by
juanf
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-5725 : Remove init cache
parent
21bcd873
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/eln-lims-api/script.py
+2
-6
2 additions, 6 deletions
...s/eln-lims/1/dss/reporting-plugins/eln-lims-api/script.py
with
2 additions
and
6 deletions
openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/eln-lims-api/script.py
+
2
−
6
View file @
8a24395f
...
@@ -61,9 +61,7 @@ from ch.ethz.sis.openbis.generic.asapi.v3.dto.sample.id import SamplePermId
...
@@ -61,9 +61,7 @@ from ch.ethz.sis.openbis.generic.asapi.v3.dto.sample.id import SamplePermId
from
ch.ethz.sis.openbis.generic.asapi.v3.dto.experiment.id
import
ExperimentIdentifier
;
from
ch.ethz.sis.openbis.generic.asapi.v3.dto.experiment.id
import
ExperimentIdentifier
;
from
ch.ethz.sis.openbis.generic.server.sharedapi.v3.json
import
GenericObjectMapper
;
from
ch.ethz.sis.openbis.generic.server.sharedapi.v3.json
import
GenericObjectMapper
;
from
ch.systemsx.cisd.openbis.dss.generic.server
import
DataStoreServer
from
ch.systemsx.cisd.openbis.dss.generic.server
import
DataStoreServer
from
ch.systemsx.cisd.common.shared.basic.string
import
StringUtils
from
ch.systemsx.cisd.common.shared.basic.string
import
StringUtils
from
ch.ethz.sis
import
PersistentKeyValueStore
#from ch.systemsx.cisd.common.ssl import SslCertificateHelper;
#from ch.systemsx.cisd.common.ssl import SslCertificateHelper;
#Plasmapper server used
#Plasmapper server used
...
@@ -199,9 +197,7 @@ def process(tr, parameters, tableBuilder):
...
@@ -199,9 +197,7 @@ def process(tr, parameters, tableBuilder):
tr
.
setUserId
(
userId
);
tr
.
setUserId
(
userId
);
if
method
==
"
init
"
:
if
method
==
"
init
"
:
if
PersistentKeyValueStore
.
get
(
"
$isELNInitDone
"
)
!=
True
:
isOk
=
init
(
tr
,
parameters
,
tableBuilder
);
isOk
=
init
(
tr
,
parameters
,
tableBuilder
);
PersistentKeyValueStore
.
put
(
"
$isELNInitDone
"
,
True
);
if
method
==
"
isFileAuthUser
"
:
if
method
==
"
isFileAuthUser
"
:
result
=
isFileAuthUser
(
tr
,
parameters
,
tableBuilder
);
result
=
isFileAuthUser
(
tr
,
parameters
,
tableBuilder
);
isOk
=
True
;
isOk
=
True
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment