Skip to content

Commit 813c17b

Browse files
committed
fixed mistaketly changed code
1 parent 65a490f commit 813c17b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/controllers/InstanceRegistryController.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ class InstanceRegistryController @Inject()(implicit system: ActorSystem, mat: Ma
236236
.post("")
237237
.map { response =>
238238
if (response.status == 200) {
239-
Ok(Json.obj("token" -> response.body, "refreshToken" -> ""))
239+
Ok(response.body)
240240
} else {
241241
new Status(response.status)
242242
}

conf/application.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -369,9 +369,9 @@ play.modules.enabled += "module.Module"
369369
# play.http.errorHandler = "utils.ErrorHandler"
370370

371371
app.portManagement = 8083
372-
app.instanceRegistryUri = "http://pg-delphi.cs.upb.de:8895"
372+
app.instanceRegistryUri = "http://pg-delphi.cs.upb.de:8810"
373373
app.instanceRegistryUri = ${?INSTANCE_REGISTRY_URI}
374-
app.instanceRegistryBasePath = "pg-delphi.cs.upb.de:8895"
374+
app.instanceRegistryBasePath = "pg-delphi.cs.upb.de:8810"
375375
app.instanceRegistryBasePath = ${?INSTANCE_REGISTRY_BASE_PATH}
376376

377377
//JwtKey

0 commit comments

Comments
 (0)