- Extend the FileResolver to support OSGi bundles - eclipse-vertx/vert.x#1174
- Some improvements to net param defaulting and use different eventloop… - eclipse-vertx/vert.x#1173
- Replace asciidoc attributes by docgen variables - eclipse-vertx/vert.x#1170
- CLI usage argument - eclipse-vertx/vert.x#1168
- Launcher process redeploy - eclipse-vertx/vert.x#1167
- Make sure setting write queue max size works irrrespective of previou… - eclipse-vertx/vert.x#1166
- Make sure stream() for JsonObject/JsonArray returns correct types - eclipse-vertx/vert.x#1165
- Don't set server to no handlers unless all handlers are removed - eclipse-vertx/vert.x#1164
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# Build: | |
# docker build -t wisdom/acme-sample . | |
# | |
# Run: | |
# docker run -d -p 9000:9000 wisdom/acme-sample | |
# | |
# Optional volumes: | |
# - Logs: /root/wisdom/logs | |
# - Applications (where app bundles live): /root/wisdom/application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Requires | |
Json json; | |
@Route(method = HttpMethod.POST, uri = "/file2") | |
public Result upload2(final @FormParameter("file") FileItem file) throws | |
IOException { | |
if (file == null) { | |
logger().error("No uploaded file !"); | |
flash("error", "true"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am cescoffier on github. | |
* I am cescoffier (https://keybase.io/cescoffier) on keybase. | |
* I have a public key whose fingerprint is 75D0 E0CE 2CA3 7E06 4CB8 3D39 02DE 2EE1 067B 2D75 | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
#%L | |
Wisdom-Framework | |
%% | |
Copyright (C) 2013 - 2014 Wisdom Framework | |
%% | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -t -i -p 8080:8080 sample/vertx-ruby | |
Thread Thread[vert.x-eventloop-thread-2,5,main] has been blocked for 2092 ms, time limit is 2000 | |
Thread Thread[vert.x-eventloop-thread-2,5,main] has been blocked for 3148 ms, time limit is 2000 | |
Thread Thread[vert.x-eventloop-thread-2,5,main] has been blocked for 4148 ms, time limit is 2000 | |
Thread Thread[vert.x-eventloop-thread-2,5,main] has been blocked for 5148 ms, time limit is 2000 | |
io.vertx.core.VertxException: Thread blocked | |
at com.kenai.jffi.MemoryIO.verifyAccessor(MemoryIO.java:1004) | |
at com.kenai.jffi.MemoryIO.isUnsafeAvailable(MemoryIO.java:1028) | |
at com.kenai.jffi.MemoryIO.newMemoryIO(MemoryIO.java:86) | |
at com.kenai.jffi.MemoryIO.access$000(MemoryIO.java:41) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unhandled exception | |
java.lang.RuntimeException: java.lang.NoSuchMethodException: Can't unambiguously select between fixed arity signatures [(java.util.Map), (java.lang.String)] of the method io.vertx.core.json.JsonObject.<init> for argument types [jdk.nashorn.internal.runtime.Undefined] | |
at jdk.nashorn.internal.runtime.arrays.IteratorAction.apply(IteratorAction.java:116) | |
at jdk.nashorn.internal.objects.NativeArray.forEach(NativeArray.java:1607) | |
at jdk.nashorn.internal.scripts.Script$Recompilation$182$1566AA$\^eval\_#88\!17\^eval\_.L:1$loadData$L:47(server.js:83) | |
at jdk.nashorn.internal.scripts.Script$Recompilation$176$19479A$\^eval\_#88\!17\^eval\_.L:1$MongoClient$dropCollection$L:471(vertx-mongo-js/mongo_client.js:473) | |
at io.vertx.core.Handler$$NashornJavaAdapter.handle(Unknown Source) | |
at io.vertx.ext.mongo.impl.MongoClientImpl.lambda$null$33(MongoClientImpl.java:324) | |
at io.vertx.ext.mongo.impl.MongoClientImpl$$Lambda$12/463812514.handle(Unknown Source) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## worker - ruby | |
* Status: FAILURE | |
* Execution time: 7128 ms | |
* Run File: /Users/clement/Projects/vert.x/vertx-integration-tests/vertx-examples-it/target/it/core-examples/core-worker-run.json | |
### Run and Execution |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### | |
# chkconfig: 345 20 80 | |
# description: Vert.x application service script | |
# processname: java | |
# | |
# Installation (CentOS): | |
# copy file to /etc/init.d | |
# chmod +x /etc/init.d/my-vertx-application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function cleanup-branches | |
git branch --merged | grep -v "\*" | grep -v master | grep -v dev | xargs -n 1 git branch -d | |
end |