Add notes for 2018-02-17

This commit is contained in:
2018-02-17 11:37:57 +02:00
parent dfe81fb544
commit fa596d4a41
45 changed files with 79 additions and 56 deletions

View File

@ -573,3 +573,14 @@ $ psql -c 'select * from pg_stat_activity' | grep -o -E '(dspaceWeb|dspaceApi|ds
1554 207.46.13.157
2018 104.196.152.243
```
## 2018-02-17
- Peter pointed out that we had an incorrect sponsor in the controlled vocabulary: `U.S. Agency for International Development``United States Agency for International Development`
- I made a pull request to fix it ((#354)[https://github.com/ilri/DSpace/pull/354])
- I should remember to update existing values in PostgreSQL too:
```
dspace=# update metadatavalue set text_value='United States Agency for International Development' where resource_type_id=2 and metadata_field_id=29 and text_value like '%U.S. Agency for International Development%';
UPDATE 2
```