Skip to content

Commit 6d9156b

Browse files
fix: Hashlib md5 errors in FIPS for python 3.9+ (#4019)
* SAASMLOPS-1208 fix hashlib md5 errors in FIPS for python 3.9+ Signed-off-by: Brijesh Vora <brijesh.vora@sailpoint.com> * SAASMLOPS-1208 drop the version check Signed-off-by: Brijesh Vora <brijesh.vora@sailpoint.com> --------- Signed-off-by: Brijesh Vora <brijesh.vora@sailpoint.com>
1 parent 7b93c3d commit 6d9156b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sdk/python/feast/usage.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"env_signature": hashlib.md5(
5151
",".join(
5252
sorted([k for k in os.environ.keys() if not k.startswith("FEAST")])
53-
).encode()
53+
).encode(),
54+
usedforsecurity=False,
5455
).hexdigest(),
5556
}
5657

0 commit comments

Comments
 (0)