-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import logging | ||
from ckan.plugins.toolkit import chained_helper | ||
|
||
|
||
log = logging.getLogger(__name__) | ||
|
||
|
||
@chained_helper | ||
def sanitize_id(original_fn, id): | ||
""" Sobreescribimos el helper del datastore para evitar errores | ||
original: return str(uuid.UUID(id_)) | ||
""" | ||
try: | ||
new_id = original_fn(id) | ||
except Exception: | ||
log.critical(f"Error sanitize_id in helpers datastore id:{id}") | ||
raise | ||
|
||
return new_id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters