Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
f0b9a114
Commit
f0b9a114
authored
Jan 26, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] ansible disk bug
parent
f6d21585
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
tasks.py
apps/assets/tasks.py
+1
-1
signals.py
apps/users/signals.py
+2
-1
utils.py
apps/users/utils.py
+4
-1
No files found.
apps/assets/tasks.py
View file @
f0b9a114
...
...
@@ -19,7 +19,7 @@ FORKS = 10
TIMEOUT
=
60
logger
=
get_logger
(
__file__
)
CACHE_MAX_TIME
=
60
*
60
*
60
disk_pattern
=
re
.
compile
(
r'^hd|sd|xvd'
)
disk_pattern
=
re
.
compile
(
r'^hd|sd|xvd
|vd
'
)
@shared_task
...
...
apps/users/signals.py
View file @
f0b9a114
...
...
@@ -16,5 +16,6 @@ def on_user_created(sender, instance=None, created=False, **kwargs):
logger
.
debug
(
"Receive user `{}` create signal"
.
format
(
instance
.
name
))
from
.utils
import
send_user_created_mail
logger
.
info
(
" - Sending welcome mail ..."
.
format
(
instance
.
name
))
send_user_created_mail
(
instance
)
if
instance
.
email
:
send_user_created_mail
(
instance
)
apps/users/utils.py
View file @
f0b9a114
...
...
@@ -59,7 +59,10 @@ def send_user_created_mail(user):
'login_url'
:
reverse
(
'users:login'
,
external
=
True
),
}
if
settings
.
DEBUG
:
print
(
message
)
try
:
print
(
message
)
except
OSError
:
pass
send_mail_async
.
delay
(
subject
,
message
,
recipient_list
,
html_message
=
message
)
...
...
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