|
|
@ -63,7 +63,8 @@ class WriterLocations: |
|
|
|
|
|
|
|
|
|
|
|
Attributes: |
|
|
|
Attributes: |
|
|
|
events: The instances that write to the event and backfill streams. |
|
|
|
events: The instances that write to the event and backfill streams. |
|
|
|
typing: The instance that writes to the typing stream. |
|
|
|
typing: The instances that write to the typing stream. Currently |
|
|
|
|
|
|
|
can only be a single instance. |
|
|
|
to_device: The instances that write to the to_device stream. Currently |
|
|
|
to_device: The instances that write to the to_device stream. Currently |
|
|
|
can only be a single instance. |
|
|
|
can only be a single instance. |
|
|
|
account_data: The instances that write to the account data streams. Currently |
|
|
|
account_data: The instances that write to the account data streams. Currently |
|
|
@ -75,9 +76,15 @@ class WriterLocations: |
|
|
|
""" |
|
|
|
""" |
|
|
|
|
|
|
|
|
|
|
|
events = attr.ib( |
|
|
|
events = attr.ib( |
|
|
|
default=["master"], type=List[str], converter=_instance_to_list_converter |
|
|
|
default=["master"], |
|
|
|
|
|
|
|
type=List[str], |
|
|
|
|
|
|
|
converter=_instance_to_list_converter, |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
typing = attr.ib( |
|
|
|
|
|
|
|
default=["master"], |
|
|
|
|
|
|
|
type=List[str], |
|
|
|
|
|
|
|
converter=_instance_to_list_converter, |
|
|
|
) |
|
|
|
) |
|
|
|
typing = attr.ib(default="master", type=str) |
|
|
|
|
|
|
|
to_device = attr.ib( |
|
|
|
to_device = attr.ib( |
|
|
|
default=["master"], |
|
|
|
default=["master"], |
|
|
|
type=List[str], |
|
|
|
type=List[str], |
|
|
@ -217,6 +224,11 @@ class WorkerConfig(Config): |
|
|
|
% (instance, stream) |
|
|
|
% (instance, stream) |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if len(self.writers.typing) != 1: |
|
|
|
|
|
|
|
raise ConfigError( |
|
|
|
|
|
|
|
"Must only specify one instance to handle `typing` messages." |
|
|
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
if len(self.writers.to_device) != 1: |
|
|
|
if len(self.writers.to_device) != 1: |
|
|
|
raise ConfigError( |
|
|
|
raise ConfigError( |
|
|
|
"Must only specify one instance to handle `to_device` messages." |
|
|
|
"Must only specify one instance to handle `to_device` messages." |
|
|
|