Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
4a9dc5b2
Commit
4a9dc5b2
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
pushkey' are also bytes.
parent
0ade2712
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
synapse/storage/pusher.py
+17
-8
17 additions, 8 deletions
synapse/storage/pusher.py
with
17 additions
and
8 deletions
synapse/storage/pusher.py
+
17
−
8
View file @
4a9dc5b2
...
...
@@ -29,15 +29,22 @@ logger = logging.getLogger(__name__)
class
PusherStore
(
SQLBaseStore
):
@defer.inlineCallbacks
def
get_pushers_by_app_id_and_pushkey
(
self
,
app_id
,
pushkey
):
sql
=
(
"
SELECT * FROM pushers
"
"
WHERE app_id = ? AND pushkey = ?
"
)
def
r
(
txn
):
sql
=
(
"
SELECT * FROM pushers
"
"
WHERE app_id = ? AND pushkey = ?
"
)
rows
=
yield
self
.
_execute_and_decode
(
"
get_pushers_by_app_id_and_pushkey
"
,
sql
,
app_id
,
pushkey
txn
.
execute
(
sql
,
(
app_id
,
pushkey
,))
rows
=
self
.
cursor_to_dict
(
txn
)
for
r
in
rows
:
r
[
'
pushkey
'
]
=
str
(
r
[
'
pushkey
'
]).
decode
(
"
UTF8
"
)
return
rows
rows
=
yield
self
.
runInteraction
(
"
get_pushers_by_app_id_and_pushkey
"
,
r
)
defer
.
returnValue
(
rows
)
...
...
@@ -60,6 +67,8 @@ class PusherStore(SQLBaseStore):
)
pass
r
[
'
pushkey
'
]
=
str
(
r
[
'
pushkey
'
]).
decode
(
"
UTF8
"
)
return
rows
rows
=
yield
self
.
runInteraction
(
"
get_all_pushers
"
,
get_pushers
)
...
...
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