Changeset 100c1d2 in flexoentity
- Timestamp:
- 11/28/25 17:17:55 (7 weeks ago)
- Branches:
- master
- Children:
- 4a79b76
- Parents:
- 4e11d58
- Files:
-
- 2 edited
-
flexoentity/flexo_entity.py (modified) (1 diff)
-
tests/conftest.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flexoentity/flexo_entity.py
r4e11d58 r100c1d2 286 286 owner_id = UUID(meta.get("owner_id")) 287 287 except ValueError as e: 288 logger.warn (f"Missing or wrong owner_id {e}")288 logger.warning(f"Missing or wrong owner_id {e}") 289 289 owner_id = UUID(int=0) 290 290 try: 291 291 originator_id = UUID(meta.get("originator_id")) 292 292 except ValueError as e: 293 logger.warn (f"Missing or wrong originator_id {e}")293 logger.warning(f"Missing or wrong originator_id {e}") 294 294 originator_id = UUID(int=0) 295 295 -
tests/conftest.py
r4e11d58 r100c1d2 74 74 ) 75 75 76 76 77 @pytest.fixture(scope="session") 77 78 def backend(test_cert, test_key): … … 107 108 pytest.skip(f"Backend unavailable or misconfigured: {e}") 108 109 110 109 111 @pytest.fixture 110 112 def sample_signature(sample_domain, cert_ref_linux): … … 112 114 certificate_reference=cert_ref_linux, 113 115 comment="This is a mock signature") 114
Note:
See TracChangeset
for help on using the changeset viewer.
