Skip to content

Commit 1249ac2

Browse files
authored
Merge pull request #56 from sourceplusplus/dev
v0.4.7
2 parents d362869 + 4349f5d commit 1249ac2

File tree

5 files changed

+8
-14
lines changed

5 files changed

+8
-14
lines changed

e2e/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ services:
55
container_name: spp-platform
66
hostname: spp-platform
77
ports:
8-
- "5445:5445"
98
- "5450:5450"
109
- "5455:5455"
10+
- "12800:12800"
1111
environment:
1212
- SPP_DISABLE_JWT=true
1313
skywalking-oap:

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
kotlin.code.style=official
22

33
cliGroup=com.sourceplusplus
4-
projectVersion=0.4.6
4+
projectVersion=0.4.7
55

66
vertxVersion=4.2.6
77
graalVersion = 21.3.0

src/main/graphql/.graphqlconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"extensions": {
55
"endpoints": {
66
"Default GraphQL Endpoint": {
7-
"url": "https://localhost:5445/graphql",
7+
"url": "https://localhost:12800/graphql",
88
"headers": {
99
"user-agent": "JS GraphQL"
1010
},
1111
"introspect": false
1212
}
1313
}
1414
}
15-
}
15+
}

src/main/graphql/schema.json

+2-8
Original file line numberDiff line numberDiff line change
@@ -4122,13 +4122,7 @@
41224122
"deprecationReason": null
41234123
},
41244124
{
4125-
"name": "ADD_DATA_REDACTION",
4126-
"description": null,
4127-
"isDeprecated": false,
4128-
"deprecationReason": null
4129-
},
4130-
{
4131-
"name": "REMOVE_DATA_REDACTION",
4125+
"name": "UPDATE_DATA_REDACTION",
41324126
"description": null,
41334127
"isDeprecated": false,
41344128
"deprecationReason": null
@@ -5461,4 +5455,4 @@
54615455
]
54625456
}
54635457
}
5464-
}
5458+
}

src/main/kotlin/spp/cli/PlatformCLI.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ object PlatformCLI : CliktCommand(name = "spp-cli", allowMultipleSubcommands = t
5757
val platformHost: String by option("-p", "--platform", help = "Source++ platform host")
5858
.default(
5959
(if (System.getenv("SPP_DISABLE_TLS") != "true") "https://" else "http://")
60-
+ (System.getenv("SPP_PLATFORM_HOST") ?: "localhost") + ":5445"
60+
+ (System.getenv("SPP_PLATFORM_HOST") ?: "localhost") + ":12800"
6161
)
6262
private val platformCertificate by option("-c", "--certificate", help = "Source++ platform certificate").file()
6363
.default(File("config/spp-platform.crt"))
@@ -154,7 +154,7 @@ object PlatformCLI : CliktCommand(name = "spp-cli", allowMultipleSubcommands = t
154154
)
155155
}.build()
156156
)
157-
.serverUrl("$serverUrl/graphql")
157+
.serverUrl("$serverUrl/graphql/spp")
158158
.build()
159159
}
160160

0 commit comments

Comments
 (0)