Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Merge requests
!1402
strip whitespace from addresses
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
strip whitespace from addresses
2.8.1.1_messaging_fixes
into
2.8.1.1-Development
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Charlotte Hausman
requested to merge
2.8.1.1_messaging_fixes
into
2.8.1.1-Development
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
one more tweak...
0
0
Merge request reports
Viewing commit
15b442dd
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
15b442dd
strip whitespace from addresses
· 15b442dd
Charlotte Hausman
authored
1 year ago
shared/workspaces/workspaces/notification/services/notification_service.py
+
2
−
2
Options
@@ -71,8 +71,8 @@ class NotificationService(NotificationServiceIF):
if
isinstance
(
parameters
[
"
destination_email
"
],
list
):
receiver_emails
=
parameters
[
"
destination_email
"
]
else
:
# sometimes the list gets passed in as a string, split it if needed
receiver_emails
=
parameters
[
"
destination_email
"
].
split
(
"
,
"
)
# sometimes the list gets passed in as a string, split it if needed
and strip extra spaces
receiver_emails
=
[
address
.
strip
()
for
address
in
parameters
[
"
destination_email
"
].
split
(
"
,
"
)
]
# Let's not send emails into the void
if
not
receiver_emails
:
Loading