orangy
orangy
bjuretic
05/19/2017, 1:56 PMjulienviet
06/19/2017, 7:13 PMnapperley
08/26/2017, 2:29 AMjulienviet
09/04/2017, 7:40 AMjponge
09/07/2017, 6:36 PMdave08
09/15/2017, 10:30 AMnapperley
09/24/2017, 10:07 PMval publicHandler = StaticHandler.create("public").apply {
setCachingEnabled(false)
}
router.route("/public/*").handler(publicHandler)
, unfortunately that doesn't make a difference 😦 so the Vert.x Google group is the best hope for a resolution 🐰.julienviet
10/10/2017, 5:57 AMdave08
10/14/2017, 8:14 PMdave08
10/15/2017, 10:36 AMfstn
10/15/2017, 1:30 PMjulienviet
10/16/2017, 6:35 AMfstn
10/19/2017, 7:05 AMobject JsonObjectUtils{
inline operator fun JsonObject.set(key: String, value: Any): Unit {
this.put(key,value)
}
inline operator fun <T> JsonObject.get(key: String): T {
return this.getValue(key) as T
}
fun JsonObject.getFlow(): JsonObject {
return this.getJsonObject("flow")
}
fun JsonObject.getFlowNodeId(): String {
return this.getFlow().get("nodeId")
}
fun JsonObject.setFlowNodeId(nodeId:String) {
this.getFlow().put("nodeId",nodeId)
}
fun JsonObject.getFlowName(): String {
return this.getFlow().get("name")
}
fun JsonObject.setFlowName(nodeId:String) {
this.getFlow().put("name",nodeId)
}
}
julienviet
10/21/2017, 9:12 AMnoone
11/10/2017, 1:42 AMdave08
11/19/2017, 8:46 PMjulienviet
11/27/2017, 5:35 PMeddy_wm
11/29/2017, 4:52 PMrouter.get("/file-uploads/*").handler(StaticHandler.create())
. Vert.X is failing to serve the files with this error message Resource not found, even though a correct image URL was provided.chirag
12/13/2017, 10:09 AMjulienviet
12/18/2017, 7:04 AMdave08
12/31/2017, 2:18 PMjulienviet
01/03/2018, 7:10 PMjponge
01/08/2018, 10:17 AMvertx-gradle-plugin
has no impact on thatiamsteveholmes
01/26/2018, 5:17 PMiamsteveholmes
01/31/2018, 4:52 PMs1m0nw1
02/12/2018, 8:54 PMasad.awadia
02/16/2018, 2:00 AMThread.sleep
isn't blocking its suspending the coroutine?orangy