Skip to content

Commit

Permalink
fix not normalize user bug (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
kat-statsig authored Oct 10, 2024
1 parent 06844f1 commit 77d8c9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion statsig/statsig_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,9 @@ def manually_log_config_exposure(self, user: StatsigUser, config_name: str):
)

def log_exposure_for_config(self, config_eval: DynamicConfig):
user = self.__normalize_user(config_eval.user)
self._logger.log_config_exposure(
config_eval.user,
user,
config_eval.name,
config_eval.rule_id,
config_eval.secondary_exposures,
Expand Down

0 comments on commit 77d8c9f

Please sign in to comment.