You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.debug("No metadata or topics_configuration found; applying default configuration: %s", _DEFAULTS)
135
-
logger.warning("The topics you're publishing to haven't been analyzed yet. For optimal results, either wait for the next analysis cycle or trigger one manually via the SuperClient Console")
141
+
ifnottopics:
142
+
warning_msg="No SUPERSTREAM_TOPICS_LIST environment variable set. Please set it to enable topic-specific optimizations."
143
+
else:
144
+
warning_msg="The topics you're publishing to haven't been analyzed yet. For optimal results, either wait for the next analysis cycle or trigger one manually via the SuperClient Console"
logger.debug("No matching topics found in metadata; applying default configuration: %s", _DEFAULTS)
141
-
logger.warning("The topics you're publishing to haven't been analyzed yet. For optimal results, either wait for the next analysis cycle or trigger one manually via the SuperClient Console")
151
+
ifnottopics:
152
+
warning_msg="No SUPERSTREAM_TOPICS_LIST environment variable set. Please set it to enable topic-specific optimizations."
153
+
else:
154
+
warning_msg="The topics you're publishing to haven't been analyzed yet. For optimal results, either wait for the next analysis cycle or trigger one manually via the SuperClient Console"
0 commit comments