Skip to content

Commit

Permalink
chore: handle comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Nov 30, 2023
1 parent 7c51d30 commit cc8dc35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eventtracking/backends/event_bus.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def send(self, event):

metadata = TRACKING_EVENT_EMITTED.generate_signal_metadata()

logger.info(f"Sending tracking lof {tracking_log.name} to the event bus.")
logger.info(f"Emitting tracking log {tracking_log.name} to the event bus.")
get_producer().send(
signal=TRACKING_EVENT_EMITTED,
topic="analytics",
Expand Down
4 changes: 2 additions & 2 deletions eventtracking/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
This module contains various configuration settings via
waffle switches for the Certificates app.
waffle switches for the event-tracking app.
"""

from edx_toggles.toggles import SettingToggle
Expand All @@ -14,6 +14,6 @@
# .. toggle_creation_date: 2023-10-26
SEND_TRACKING_EVENT_EMITTED_SIGNAL = SettingToggle(
'SEND_TRACKING_EVENT_EMITTED_SIGNAL',
default=True,
default=False,
module_name=__name__
)

0 comments on commit cc8dc35

Please sign in to comment.