Skip to content
This repository was archived by the owner on May 28, 2018. It is now read-only.

Commit 96a356a

Browse files
japodGerrit Code Review
authored andcommitted
Merge "J-477: "Clean-up performance jobs (WLS, Grizzly)" - test cases apps cleaning - automatically configure SERVER_LIST - ignore empty line and commented line in MEASUREMENT_DATA - using weblogic.Deployer to deploy application - store all client files in git"
2 parents 4ade0d4 + c6b127d commit 96a356a

File tree

32 files changed

+212
-515
lines changed

32 files changed

+212
-515
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
wrk.method = "POST"
2+
io.input("json.dat")
3+
wrk.body = io.read("*all")
4+
wrk.headers["Content-Type"] = "application/json"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
wrk.method = "PUT"
2+
io.input("json.dat")
3+
wrk.body = io.read("*all")
4+
wrk.headers["Content-Type"] = "application/json"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"Wolfgang","age":21,"address":"Salzburg"}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
wrk.method = "POST"
2+
io.input("person.dat")
3+
wrk.body = io.read("*all")
4+
wrk.headers["Content-Type"] = "application/person"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
wrk.method = "PUT"
2+
io.input("person.dat")
3+
wrk.body = io.read("*all")
4+
wrk.headers["Content-Type"] = "application/person"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name: Mozart
2+
age: 21
3+
address: Salzburg
4+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
wrk.method = "POST"
2+
io.input("text.dat")
3+
wrk.body = io.read("*all")
4+
wrk.headers["Content-Type"] = "text/plain"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
wrk.method = "PUT"
2+
io.input("text.dat")
3+
wrk.body = io.read("*all")
4+
wrk.headers["Content-Type"] = "text/plain"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Prague ( /ˈprɑːɡ/; Czech: Praha pronounced [ˈpraɦa] ( listen)) is the capital and largest city of the Czech Republic. It is the fourteenth-largest city in the European Union.[5] It is also the historical capital of Bohemia proper. Situated in the north-west of the country on the Vltava river, the city is home to about 1.3 million people, while its larger urban zone is estimated to have a population of nearly 2 million.[3] The city has a temperate oceanic climate, with warm summers and chilly winters.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
wrk.method = "POST"
2+
io.input("xml.dat")
3+
wrk.body = io.read("*all")
4+
wrk.headers["Content-Type"] = "application/xml"

0 commit comments

Comments
 (0)