codeforamerica / cfapi

The Code for America API. Tracks and motivates activity and participation across the civic technology movement.
http://codeforamerica.org/api
MIT License
113 stars 52 forks source link

Code for Nebraska doesn't seem to show up as an Org #339

Open BryceStevenWilley opened 3 years ago

BryceStevenWilley commented 3 years ago

As of https://github.com/codeforamerica/brigade-information/commit/c7ae75114de17bd6365dc499c1be1d5c744f9a8f, Code for Nebraska should be showing up in the results for organizations.

$ curl http://api.codeforamerica.org/api/organizations/Code-for-Boston  # Works fine
{
  "all_attendance": ...
  ...
}

$ curl http://api.codeforamerica.org/api/organizations/Code-for-Nebraska  # Doesn't work
{
  "status": "Resource Not Found"
}

Even more curious is that before the linked commit was pushed, there should have been an "Open Nebraska", since at least 2016. However, this API doesn't seem to return Open Nebraska as a valid organization either.

$ curl -s http://api.codeforamerica.org/api/organizations/Open-Eugene  # Works fine
{
  "all_attendance":...
  ...
}
$ curl -s http://api.codeforamerica.org/api/organizations/Open-Nebraska   # Doesn't work either
{
  "status": "Resource Not Found"
}

I'm wondering it there's something that could be failing in the background of run_update.py that would prevent Open-Nebraska from processing correctly?