Skip to content

Commit

Permalink
Use more bytes for unique project naming
Browse files Browse the repository at this point in the history
Co-authored-by: John Myers <john@gretel.ai>
GitOrigin-RevId: 1f8ae5e3db185e3424dce864d8eff852ab006225
  • Loading branch information
johntmyers and John Myers committed Feb 25, 2022
1 parent d85106a commit c0e909f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gretel_client/projects/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def create_or_get_unique_project(
params will have no affect.
"""
current_user_dict = get_me()
unique_suffix = current_user_dict["_id"][9:19]
unique_suffix = current_user_dict["_id"][9:]
target_name = f"{name}-{unique_suffix}"

try:
Expand Down

0 comments on commit c0e909f

Please sign in to comment.