Skip to content

Commit

Permalink
adding additional cluster info
Browse files Browse the repository at this point in the history
  • Loading branch information
dchourasia committed Dec 2, 2023
1 parent 9152e7a commit 545f973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cluster_aggregator.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def update_cluster_details(clusters:list[oc_cluster]):
def get_original_email_address(email:str):
parts = email.split('@')
original_prefix = parts[0].split('+')[0]
return original_prefix + parts[1]
return f'{original_prefix}@{parts[1]}'



Expand Down

0 comments on commit 545f973

Please sign in to comment.