Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
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
TeDomum
Matrix
Commits
b2510dce
Unverified
Commit
b2510dce
authored
5 years ago
by
Brendan Abolivier
Browse files
Options
Downloads
Patches
Plain Diff
Fix import paths in synapse_port_db
parent
c97ed64d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/synapse_port_db
+19
-11
19 additions, 11 deletions
scripts/synapse_port_db
with
19 additions
and
11 deletions
scripts/synapse_port_db
+
19
−
11
View file @
b2510dce
...
...
@@ -33,19 +33,27 @@ from twisted.internet import defer, reactor
from
synapse.config.homeserver
import
HomeServerConfig
from
synapse.logging.context
import
PreserveLoggingContext
from
synapse.storage._base
import
LoggingTransaction
from
synapse.storage.client_ips
import
ClientIpBackgroundUpdateStore
from
synapse.storage.deviceinbox
import
DeviceInboxBackgroundUpdateStore
from
synapse.storage.devices
import
DeviceBackgroundUpdateStore
from
synapse.storage.
data_stores.main.
client_ips
import
ClientIpBackgroundUpdateStore
from
synapse.storage.
data_stores.main.
deviceinbox
import
DeviceInboxBackgroundUpdateStore
from
synapse.storage.
data_stores.main.
devices
import
DeviceBackgroundUpdateStore
from
synapse.storage.engines
import
create_engine
from
synapse.storage.events_bg_updates
import
EventsBackgroundUpdatesStore
from
synapse.storage.media_repository
import
MediaRepositoryBackgroundUpdateStore
from
synapse.storage.data_stores.main.events_bg_updates
import
(
EventsBackgroundUpdatesStore
)
from
synapse.storage.data_stores.main.media_repository
import
(
MediaRepositoryBackgroundUpdateStore
)
from
synapse.storage.prepare_database
import
prepare_database
from
synapse.storage.registration
import
RegistrationBackgroundUpdateStore
from
synapse.storage.roommember
import
RoomMemberBackgroundUpdateStore
from
synapse.storage.search
import
SearchBackgroundUpdateStore
from
synapse.storage.state
import
StateBackgroundUpdateStore
from
synapse.storage.stats
import
StatsStore
from
synapse.storage.user_directory
import
UserDirectoryBackgroundUpdateStore
from
synapse.storage.data_stores.main.registration
import
(
RegistrationBackgroundUpdateStore
)
from
synapse.storage.data_stores.main.roommember
import
RoomMemberBackgroundUpdateStore
from
synapse.storage.data_stores.main.search
import
SearchBackgroundUpdateStore
from
synapse.storage.data_stores.main.state
import
StateBackgroundUpdateStore
from
synapse.storage.data_stores.main.stats
import
StatsStore
from
synapse.storage.data_stores.main.user_directory
import
(
UserDirectoryBackgroundUpdateStore
)
from
synapse.util
import
Clock
logger
=
logging
.
getLogger
(
"
synapse_port_db
"
)
...
...
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