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
"Environment variable DEMO_UUID_REQUESTING_NONRANDOM is deprecated. See case_utils.local_uuid.demo_uuid for usage notes on its replacement, CASE_DEMO_NONRANDOM_UUID_BASE. Proceeding with random UUIDs.",
47
+
"Environment variable DEMO_UUID_REQUESTING_NONRANDOM is deprecated. See case_utils.local_uuid._demo_uuid for usage notes on its replacement, CASE_DEMO_NONRANDOM_UUID_BASE. Proceeding with random UUIDs.",
44
48
FutureWarning,
45
49
)
46
50
return
@@ -109,10 +113,12 @@ def configure() -> None:
109
113
DEMO_UUID_BASE="/".join(demo_uuid_base_parts)
110
114
111
115
112
-
defdemo_uuid() ->str:
116
+
def_demo_uuid() ->str:
113
117
"""
114
118
This function generates a repeatable UUID, drawing on non-varying elements of the environment and process call for entropy.
115
119
120
+
This function is not intended to be called outside of this module. Instead, local_uuid() should be called.
121
+
116
122
WARNING: This function was developed for use ONLY for reducing (but not eliminating) version-control edits to identifiers when generating sample data. It creates UUIDs that are decidedly NOT random, and should remain consistent on repeated calls to the importing script.
117
123
118
124
To prevent accidental non-random UUID usage, two setup steps need to be done before calling this function:
0 commit comments