This file contains hidden or 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
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND | |
root 1 0.0 0.0 9764 1788 ? Ss 13:50 0:04 init | |
root 2 0.0 0.0 0 0 ? S 13:50 0:00 [kthreadd] | |
root 3 0.0 0.0 0 0 ? S 13:50 0:00 [ksoftirqd/0] | |
root 5 0.0 0.0 0 0 ? S< 13:50 0:00 [kworker/0:0H] | |
root 7 0.0 0.0 0 0 ? S 13:50 0:14 [rcu_sched] | |
root 8 0.0 0.0 0 0 ? S 13:50 0:00 [rcu_bh] | |
root 9 0.0 0.0 0 0 ? S 13:50 0:00 [migration/0] | |
root 10 0.0 0.0 0 0 ? S 13:50 0:00 [migration/1] | |
root 11 0.0 0.0 0 0 ? S 13:50 0:00 [ksoftirqd/1] |
This file contains hidden or 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
1) EtlTableTest::testNormalizeColumn | |
Zend\Db\Adapter\Exception\RuntimeException: Connect Error: SQLSTATE[HY000] [2002] No such file or directory | |
/Users/paullawler/Projects/szfd/vendor/zendframework/zendframework/library/Zend/Db/Adapter/Driver/Pdo/Connection.php:331 | |
/Users/paullawler/Projects/szfd/vendor/zendframework/zendframework/library/Zend/Db/Adapter/Driver/Pdo/Connection.php:320 | |
/Users/paullawler/Projects/szfd/vendor/zendframework/zendframework/library/Zend/Db/Adapter/Driver/Pdo/Connection.php:165 | |
/Users/paullawler/Projects/szfd/vendor/zendframework/zendframework/library/Zend/Db/Adapter/Adapter.php:155 | |
/Users/paullawler/Projects/szfd/vendor/zendframework/zendframework/library/Zend/Db/Metadata/Source/AbstractSource.php:46 | |
/Users/paullawler/Projects/szfd/vendor/zendframework/zendframework/library/Zend/Db/Metadata/Metadata.php:49 | |
/Users/paullawler/Projects/szfd/vendor/zendframework/zendframework/library/Zend/Db/Metadata/Metadata.php:36 |
This file contains hidden or 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
Given(~/^multitenant partner data is in the assessment repository$/) { -> | |
response = createAssessment(validAssessment()) | |
def assessmentId = response.json.id | |
sa1 = validStudentAssessment(assessmentId) | |
sa2 = validStudentAssessment(assessmentId) | |
postStudentAssessment(sa1) | |
postStudentAssessment(sa2) | |
} | |
When(~/^the partner retrieves the student assessments$/) { -> |
This file contains hidden or 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
package services | |
import java.util.NoSuchElementException | |
import java.util.concurrent.TimeUnit | |
import com.google.inject.Singleton | |
import com.stormpath.sdk.account.Account | |
import com.stormpath.sdk.api.{ApiAuthenticationResult, ApiKeys} | |
import com.stormpath.sdk.application.Application | |
import com.stormpath.sdk.client.{Clients, Client} |
This file contains hidden or 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
Internal server error, for (POST) [/schoolzilla/api/v1/oauth/token?grant_type=client_credentials] -> | |
play.api.Application$$anon$1: Execution exception[[RuntimeException: java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest]] | |
at play.api.Application$class.handleError(Application.scala:296) ~[play_2.11-2.3.6.jar:2.3.6] | |
at play.api.DefaultApplication.handleError(Application.scala:402) [play_2.11-2.3.6.jar:2.3.6] | |
at play.core.server.netty.PlayDefaultUpstreamHandler$$anonfun$3$$anonfun$applyOrElse$4.apply(PlayDefaultUpstreamHandler.scala:320) [play_2.11-2.3.6.jar:2.3.6] | |
at play.core.server.netty.PlayDefaultUpstreamHandler$$anonfun$3$$anonfun$applyOrElse$4.apply(PlayDefaultUpstreamHandler.scala:320) [play_2.11-2.3.6.jar:2.3.6] | |
at scala.Option.map(Option.scala:145) [scala-library-2.11.1.jar:na] | |
Caused by: java.lang.RuntimeException: java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest | |
at play.api.mvc.ActionBuilder$$anon$1.apply(Action.scala:523) ~[play_2.11-2.3.6.jar:2.3.6] |
This file contains hidden or 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
package services | |
import java.util.NoSuchElementException | |
import java.util.concurrent.TimeUnit | |
import com.google.inject.Singleton | |
import com.stormpath.sdk.account.Account | |
import com.stormpath.sdk.api.{ApiAuthenticationResult, ApiKeys} | |
import com.stormpath.sdk.application.Application | |
import com.stormpath.sdk.client.{Clients, Client} |
This file contains hidden or 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
package formatters.json | |
import play.api.libs.json.Json.toJson | |
import play.api.libs.json.JsValue | |
import play.api.libs.json.Format | |
import java.util.Date | |
import java.text.SimpleDateFormat | |
object DateFormatter { |