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
d64fd04e
Commit
d64fd04e
authored
14 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
SE-242 minor: better email content
SVN: 15696
parent
479ebbfa
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/web/server/LibraryRegistrationTask.java
+3
-4
3 additions, 4 deletions
.../screening/client/web/server/LibraryRegistrationTask.java
with
3 additions
and
4 deletions
screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/web/server/LibraryRegistrationTask.java
+
3
−
4
View file @
d64fd04e
...
...
@@ -66,7 +66,7 @@ class LibraryRegistrationTask implements Runnable
}
}
catch
(
Exception
ex
)
{
message
.
append
(
"
GENES: ERROR (NOT REGISTERED)
\n"
);
message
.
append
(
"
ERROR: Genes could not be registered!
\n"
);
message
.
append
(
ex
.
getMessage
());
sendErrorEmail
(
message
.
toString
(),
email
);
return
;
...
...
@@ -81,7 +81,7 @@ class LibraryRegistrationTask implements Runnable
}
}
catch
(
Exception
ex
)
{
message
.
append
(
"
\nOLIGOS: ERROR (NOT REGISTERED)
\n"
);
message
.
append
(
"
ERROR: Oligos could not be registered!
\n"
);
message
.
append
(
ex
.
getMessage
());
sendErrorEmail
(
message
.
toString
(),
email
);
return
;
...
...
@@ -89,7 +89,6 @@ class LibraryRegistrationTask implements Runnable
try
{
genericServer
.
registerSamples
(
sessionToken
,
newSamplesWithType
);
message
.
append
(
"PLATES: OK\n"
);
for
(
NewSamplesWithTypes
s
:
newSamplesWithType
)
{
message
.
append
(
"Successfuly registered "
+
s
.
getNewSamples
().
size
()
...
...
@@ -97,7 +96,7 @@ class LibraryRegistrationTask implements Runnable
}
}
catch
(
Exception
ex
)
{
message
.
append
(
"
PLATES: ERROR (NOT REGISTERED)
\n"
);
message
.
append
(
"
ERROR: Plates and wells could not be registered!
\n"
);
message
.
append
(
ex
.
getMessage
());
sendErrorEmail
(
message
.
toString
(),
email
);
return
;
...
...
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