Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Opentrace device lists #5853

Merged
merged 36 commits into from
Sep 3, 2019
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
bdf8e51
Newsfile
erikjohnston Aug 14, 2019
8629a68
Fixup changelog and remove debug logging
erikjohnston Aug 16, 2019
9043403
Stylish imports
JorikSchellekens Aug 14, 2019
98afb14
Trace devices
JorikSchellekens Jun 28, 2019
b0d2e26
Trace device messages.
JorikSchellekens Jun 28, 2019
0b3d088
Update to new access pattern
JorikSchellekens Jul 2, 2019
34f6214
How did that half of the statement get deleted?
JorikSchellekens Jul 3, 2019
e358f00
These functions were not deferreds!
JorikSchellekens Jul 4, 2019
6a2ac72
The great logging/ migration
JorikSchellekens Jul 4, 2019
09e40a0
Some tracing
JorikSchellekens Jul 8, 2019
78a0123
Nicer tracing
JorikSchellekens Jul 11, 2019
b9db310
A little extra device_list tracing
JorikSchellekens Jul 15, 2019
6068b69
Use better decorator names.
JorikSchellekens Jul 17, 2019
e5155ee
Use unified trace method
JorikSchellekens Jul 22, 2019
c35f9d9
Refactor return value so we don't create identical lists each time.
JorikSchellekens Aug 5, 2019
303fcce
String concatenation without the '+'
JorikSchellekens Aug 5, 2019
d7d8492
Use underscores.
JorikSchellekens Aug 5, 2019
68d4c94
isort
JorikSchellekens Aug 14, 2019
8869422
Bad return type
JorikSchellekens Aug 14, 2019
08787f4
newsfile
JorikSchellekens Aug 14, 2019
42c2acd
Use the import style.
JorikSchellekens Aug 14, 2019
547f125
Remove astray indent
JorikSchellekens Aug 15, 2019
ff86fa6
Import style
JorikSchellekens Aug 16, 2019
395ee6a
Missing import
JorikSchellekens Aug 16, 2019
83a011f
Unused import
JorikSchellekens Aug 16, 2019
8769aa3
Feature and simplification
JorikSchellekens Aug 20, 2019
656e3b7
Underscores
JorikSchellekens Aug 20, 2019
fb87863
Allow the passing of operation_name to trace
JorikSchellekens Aug 22, 2019
1f5b9b0
Old import
JorikSchellekens Aug 23, 2019
47f8a59
Remove unused import
JorikSchellekens Aug 27, 2019
071b04d
Use the the keyword in the trace method
JorikSchellekens Aug 27, 2019
4d68ac0
Cleanup trace method
JorikSchellekens Sep 2, 2019
bce66ae
Merge branch 'develop' into joriks/opentraicng_devices
JorikSchellekens Sep 2, 2019
1c86773
Merge was not black
JorikSchellekens Sep 2, 2019
fa17018
opname not operation_name
JorikSchellekens Sep 3, 2019
1b5c891
Remove comment
JorikSchellekens Sep 3, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bad return type
JorikSchellekens committed Aug 23, 2019
commit 8869422e80029d84d204b9ae92463c83a4e381d5
2 changes: 1 addition & 1 deletion synapse/handlers/device.py
Original file line number Diff line number Diff line change
@@ -220,7 +220,7 @@ def get_user_ids_changed(self, user_id, from_token):

opentracing.log_kv(result)

return {result}
return result


class DeviceHandler(DeviceWorkerHandler):