sul-dlss / dlss-wowza

Wowza server side modules.
1 stars 0 forks source link

deploy latest wowza plugin to wowza-prod #45

Open tingulfsen opened 8 years ago

tingulfsen commented 8 years ago

Tag a new version, then deploy the latest master branch with Honeybadger enabled.

ndushay commented 8 years ago

blocked by #46

jmartin-sul commented 7 years ago

new version (v0.5.0) has been tagged (and the artifact has been built in jenkins). will deploy (via version bump in puppet) once the puppet machinery for setting environment vars is in place.

jmartin-sul commented 7 years ago

new plugin version has been deployed to dev and stage. currently, it seems unable to read the environment variable values it needs (for API key and reporting environment name). though puppet does appear to be setting the env vars correctly (they show up in the list from printenv, and a simple Java test class to print the env vars dumps the expected values, e.g. running the following on stage:

public class TestGetenv
{
  public static void main(String[] args)
  {
    System.out.print("WOWZA_HONEYBADGER_API_KEY=");
    System.out.println(System.getenv("WOWZA_HONEYBADGER_API_KEY"));
    System.out.print("WOWZA_HONEYBADGER_ENV=");
    System.out.println(System.getenv("WOWZA_HONEYBADGER_ENV"));
  }
}

prints:

WOWZA_HONEYBADGER_API_KEY=[redacted]
WOWZA_HONEYBADGER_ENV=stage

wowza support has been contacted, level 1 support passed us on to developer support, waiting on a reply from dev support.