mirror of
https://github.com/jlengrand/ktor.git
synced 2026-03-10 08:31:20 +00:00
@@ -92,19 +92,16 @@ allprojects {
|
||||
dokka {
|
||||
outputFormat = 'html'
|
||||
outputDirectory = "$buildDir/kdoc"
|
||||
reportNotDocumented = false
|
||||
}
|
||||
|
||||
task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) {
|
||||
outputFormat = 'javadoc'
|
||||
outputDirectory = "$buildDir/javadoc"
|
||||
reportNotDocumented = false
|
||||
}
|
||||
|
||||
task dokkaWebsite(type: org.jetbrains.dokka.gradle.DokkaTask) {
|
||||
outputFormat = 'kotlin-website'
|
||||
outputDirectory = "${rootProject.projectDir}/apidoc"
|
||||
reportNotDocumented = false
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ version=0.9.2-SNAPSHOT
|
||||
|
||||
kotlin_version=1.2.31
|
||||
coroutines_version=0.22.5
|
||||
dokka_version=0.9.15
|
||||
dokka_version=0.9.16
|
||||
|
||||
netty_version=4.1.19.Final
|
||||
netty_tcnative_version=2.0.7.Final
|
||||
|
||||
15
pipeline.lua
Normal file
15
pipeline.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
init = function(args)
|
||||
request_uri = args[1]
|
||||
depth = 10 -- tonumber(args[2]) or 1
|
||||
|
||||
local r = {}
|
||||
for i=1,depth do
|
||||
r[i] = wrk.format(nil, request_uri)
|
||||
end
|
||||
req = table.concat(r)
|
||||
end
|
||||
|
||||
request = function()
|
||||
wrk.headers["J-Tenant-Id"] = "1007"
|
||||
return req
|
||||
end
|
||||
Reference in New Issue
Block a user