Lars Ivar Igesund
09/23/2020, 8:51 AMLars Ivar Igesund
09/23/2020, 9:08 AMLars Ivar Igesund
09/23/2020, 12:05 PMLars Ivar Igesund
09/23/2020, 12:15 PMtotetsumonai
09/24/2020, 6:47 AMMoray Macdonald
09/30/2020, 4:39 PMLars Ivar Igesund
09/30/2020, 6:16 PMkhareta
10/01/2020, 10:02 AMUncaught Error: Directive "isAuthenticated" may not be used on FIELD_DEFINITION.
Directive "isAuthenticated" may not be used on FIELD_DEFINITION.
Directive "isAuthenticated" may not be used on FIELD_DEFINITION.
Directive "hasRole" may not be used on FIELD_DEFINITION.
Directive "isAuthenticated" may not be used on FIELD_DEFINITION.
what's going on?Moray Macdonald
10/02/2020, 8:09 AMLars Ivar Igesund
10/07/2020, 7:20 AMLars Ivar Igesund
10/07/2020, 7:23 AMLars Ivar Igesund
10/07/2020, 7:24 AMLars Ivar Igesund
10/07/2020, 7:28 AMLars Ivar Igesund
10/07/2020, 7:54 AMGabriel Oliveira
10/07/2020, 11:03 PMGabriel Oliveira
10/07/2020, 11:04 PMLars Ivar Igesund
10/12/2020, 2:33 PMGabriel Oliveira
10/13/2020, 2:28 AMLars-Jørgen Kristiansen
10/14/2020, 11:40 AM! You already have nodes for this model. This change may result in data loss.
Why is this breaking?
i.e. going from this:
type Node {
parent: Node @relation(name: "NodeParentChildren", link: INLINE)
chilldren: Node @relation(name: "NodeParentChildren")
}
To this:
type Node {
parent: Node @relation(name: "NodeParentChildren", link: INLINE)
chilldren: [Node!]! @relation(name: "NodeParentChildren")
}
tmoney
10/14/2020, 2:55 PMtmoney
10/14/2020, 2:57 PMDavid Gwon
10/20/2020, 1:53 AMDavid Gwon
10/20/2020, 1:53 AMLars-Jørgen Kristiansen
10/20/2020, 3:54 PMDaniel Uhm
10/27/2020, 4:58 AM[INFO] Fatal error during deployment worker initialization: akka.pattern.AskTimeoutException: Ask timed out on [Actor[<akka://single-server/user/$e#1930414073>]] after [300000 ms]. Sender[null] sent message of type "com.prisma.deploy.migration.migrator.DeploymentProtocol$Initialize$".
akka.pattern.AskTimeoutException: Ask timed out on [Actor[<akka://single-server/user/$e#1930414073>]] after [300000 ms]. Sender[null] sent message of type "com.prisma.deploy.migration.migrator.DeploymentProtocol$Initialize$".
at akka.pattern.PromiseActorRef$.$anonfun$defaultOnTimeout$1(AskSupport.scala:596)
at akka.pattern.PromiseActorRef$.$anonfun$apply$1(AskSupport.scala:606)
at akka.actor.Scheduler$$anon$4.run(Scheduler.scala:205)
at scala.concurrent.Future$InternalCallbackExecutor$.unbatchedExecute(Future.scala:870)
at scala.concurrent.BatchingExecutor.execute(BatchingExecutor.scala:109)
at scala.concurrent.BatchingExecutor.execute$(BatchingExecutor.scala:103)
at scala.concurrent.Future$InternalCallbackExecutor$.execute(Future.scala:868)
at akka.actor.LightArrayRevolverScheduler$TaskHolder.executeTask(LightArrayRevolverScheduler.scala:328)
at akka.actor.LightArrayRevolverScheduler$$anon$4.executeBucket$1(LightArrayRevolverScheduler.scala:279)
at akka.actor.LightArrayRevolverScheduler$$anon$4.nextTick(LightArrayRevolverScheduler.scala:283)
at akka.actor.LightArrayRevolverScheduler$$anon$4.run(LightArrayRevolverScheduler.scala:235)
at java.lang.Thread.run(Thread.java:748)
It turns out that EKS works much more reliably to cluster than ECS, so we are building a new one EKS, but similar errors occur. I wonder if the database is twisted, but I don’t know how to fix it. Can anyone help?
Using Prisma 2 would be ideal, but as redevelopment is going on soon, I can’t change much.
Thank you.Steven
10/29/2020, 1:17 AMkhareta
10/31/2020, 8:50 PMERROR: Variable "$input" got invalid value {"workspaceSlug":null,"clusterName":"default","serviceName":"default","stageName":"default"}; Expected non-nullable type String! not to be null at value.workspaceSlug.
{
"errors": [
{
"message": "Variable \"$input\" got invalid value {\"workspaceSlug\":null,\"clusterName\":\"default\",\"serviceName\":\"default\",\"stageName\":\"default\"}; Expected non-nullable type String! not to be null at value.workspaceSlug.",
"locations": [
{
"line": 2,
"column": 17
}
],
"code": 222
}
],
"status": 400
}
any help?khareta
11/01/2020, 10:26 AMERROR: GraphQL Error (Code: 403)
{
"error": "<html>\r\n<head><title>403 Forbidden</title></head>\r\n<body>\r\n<center><h1>403 Forbidden</h1></center>\r\n</body>\r\n</html>\r\n",
"status": 403
}
although I'm using the same managementApSecret we use for production!khareta
11/01/2020, 10:50 AMgraphql get-schema --project database
command is not getting the updated schema, and since we use an old version of prisma, then prisma generate is not available to use.
Any workarounds for this?khareta
11/01/2020, 11:08 AMtype Lol {
name: String
}
ran deploy
then get schema
then removed Lol type
then deploy
!