Bug 1389464 - oc logs errors out with "short write" error
Summary: oc logs errors out with "short write" error
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: OpenShift Container Platform
Classification: Red Hat
Component: Node
Version: 3.4.0
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: ---
: ---
Assignee: Avesh Agarwal
QA Contact: DeShuai Ma
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2016-10-27 15:52 UTC by Vikas Laad
Modified: 2017-03-08 18:43 UTC (History)
8 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
oc logs was using a wrapped word writer that could modify input in some cases such that the length of output was not equal to the length of input and this could cause ErrShortWrite (short write) error. This change restores oc logs to use golang's standard output writer.
Clone Of:
Environment:
Last Closed: 2017-01-18 12:47:11 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)
Add eap-build-logs (96.31 KB, text/plain)
2016-11-09 02:36 UTC, DeShuai Ma
no flags Details


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2017:0066 0 normal SHIPPED_LIVE Red Hat OpenShift Container Platform 3.4 RPM Release Advisory 2017-01-18 17:23:26 UTC

Description Vikas Laad 2016-10-27 15:52:27 UTC
Description of problem:
Create a new app, for me it happened with EAP App. When I tried to follow logs got the following error

error: short write

Build continued to run and succeeded.

Detailed build logs
Picked up JAVA_TOOL_OPTIONS: -Duser.home=/home/jboss -Duser.name=jboss
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OpenShift Quickstarts: Todo List: JDBC 1.2.0.Final
[INFO] ------------------------------------------------------------------------
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom (7 KB
at 47.6 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom (11 KB at 298.6 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/19/maven-parent-19.pom
25/25 KB   
Downloaded: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/19/maven-parent-19.pom (25 KB at 872.1 KB/sec)
error: short write
root@ip-172-31-43-235: ~/svt/reliability # oc get pods
NAME                    READY     STATUS    RESTARTS   AGE
eap-app-1-build         1/1       Running   0          4m
eap-app-mysql-1-1k9fk   1/1       Running   0          4m

root@ip-172-31-43-235: ~/svt/reliability # oc get builds
NAME        TYPE      FROM          STATUS     STARTED          DURATION
eap-app-1   Source    Git@caec202   Complete   10 minutes ago   5m27s



Version-Release number of selected component (if applicable):
openshift v3.4.0.16+cc70b72
kubernetes v1.4.0+776c994
etcd 3.1.0-rc.0

How reproducible:
Always with eap template

Steps to Reproduce:
1. oc new-project p1
2. oc create -f https://raw.githubusercontent.com/jboss-openshift/application-templates/master/secrets/eap-app-secret.json
3. oc new-app --template=eap64-mysql-s2i
4. oc logs eap-app-1-build --follow
5. after few seconds logs stops loading after error

Actual results:
Logs stop loading after error

Expected results:
Logs should load and stop after build finishes.

Additional info:

Comment 1 Derek Carr 2016-10-27 21:29:45 UTC
Avesh - ptal

Comment 2 Avesh Agarwal 2016-10-27 21:33:46 UTC
will look into it soon.

Comment 3 Avesh Agarwal 2016-10-28 17:50:06 UTC
Hi Vikas,

Could you tell more about your setup? As I am not able to see the similar stuff on my setup. Here are the steps I did:

1.
# oc cluster up

2.
# oc create -f https://raw.githubusercontent.com/jboss-openshift/application-templates/master/secrets/eap-app-secret.json
 
3.
# oc new-app --template=eap64-mysql-s2i (ended up in error)
error: no match for "eap64-mysql-s2i"

The 'oc new-app' command will match arguments to the following types:

  1. Images tagged into image streams in the current project or the 'openshift' project
     - if you don't specify a tag, we'll add ':latest'
  2. Images in the Docker Hub, on remote registries, or on the local Docker engine
  3. Templates in the current project or the 'openshift' project
  4. Git repository URLs or local paths that point to Git repositories

--allow-missing-images can be used to point to an image that does not exist yet.

See 'oc new-app -h' for examples.

4.
So I checked out 
https://github.com/jboss-openshift/application-templates

And created templates as follows:

# oc create -f ~/upstream-code/gocode/src/github.com/jboss-openshift/application-templates/eap/eap64-mysql-s2i.json


Then I reran, and it was successful:

# oc new-app --template=eap64-mysql-s2i
--> Deploying template "myproject/eap64-mysql-s2i" to project myproject

     eap64-mysql-s2i
     ---------
     Application template for EAP 6 MySQL applications built using S2I.

     * With parameters:
        * APPLICATION_NAME=eap-app
        * HOSTNAME_HTTP=
        * HOSTNAME_HTTPS=
        * SOURCE_REPOSITORY_URL=https://github.com/jboss-openshift/openshift-quickstarts
        * SOURCE_REPOSITORY_REF=1.2
        * CONTEXT_DIR=todolist/todolist-jdbc
        * DB_JNDI=java:jboss/datasources/TodoListDS
        * DB_DATABASE=root
        * HORNETQ_QUEUES=
        * HORNETQ_TOPICS=
        * SERVICE_ACCOUNT_NAME=eap-service-account
        * HTTPS_SECRET=eap-app-secret
        * HTTPS_KEYSTORE=keystore.jks
        * HTTPS_KEYSTORE_TYPE=
        * HTTPS_NAME=
        * HTTPS_PASSWORD=
        * DB_MIN_POOL_SIZE=
        * DB_MAX_POOL_SIZE=
        * DB_TX_ISOLATION=
        * MYSQL_LOWER_CASE_TABLE_NAMES=
        * MYSQL_MAX_CONNECTIONS=
        * MYSQL_FT_MIN_WORD_LEN=
        * MYSQL_FT_MAX_WORD_LEN=
        * MYSQL_AIO=
        * HORNETQ_CLUSTER_PASSWORD=PUd6JBcT # generated
        * DB_USERNAME=userGQ6 # generated
        * DB_PASSWORD=vjFa5Aly # generated
        * GITHUB_WEBHOOK_SECRET=mgCRt2Gj # generated
        * GENERIC_WEBHOOK_SECRET=4wniy1Y4 # generated
        * IMAGE_STREAM_NAMESPACE=openshift
        * JGROUPS_ENCRYPT_SECRET=eap-app-secret
        * JGROUPS_ENCRYPT_KEYSTORE=jgroups.jceks
        * JGROUPS_ENCRYPT_NAME=
        * JGROUPS_ENCRYPT_PASSWORD=
        * JGROUPS_CLUSTER_PASSWORD=TYKA607S # generated
        * AUTO_DEPLOY_EXPLODED=false

--> Creating resources ...
    service "eap-app" created
    service "secure-eap-app" created
    service "eap-app-mysql" created
    route "eap-app" created
    route "secure-eap-app" created
    imagestream "eap-app" created
    buildconfig "eap-app" created
    deploymentconfig "eap-app" created
    deploymentconfig "eap-app-mysql" created
--> Success
    Build scheduled, use 'oc logs -f bc/eap-app' to track its progress.
    Run 'oc status' to view your app.

5.
[root@rhel73 application-templates]# oc get pods
NAME                     READY     STATUS              RESTARTS   AGE
eap-app-mysql-1-7ixcq    0/1       ContainerCreating   0          4s
eap-app-mysql-1-deploy   1/1       Running             0          6s

So I noticed that the build was not started as I dont see the similar pods. Also

# oc get builds :  does not output anything.

But there is a bc created:

# oc get bc
NAME      TYPE      FROM      LATEST
eap-app   Source    Git   0 

So I had to start build manually:

# oc start-build eap-app

The ImageStreamTag "jboss-eap64-openshift:1.4" is invalid: from: Error resolving ImageStreamTag jboss-eap64-openshift:1.4 in namespace openshift: imagestreams "jboss-eap64-openshift" not found

However, I got the above error. So I created imagestream from jboss-openshift/application-templates/jboss-image-streams.json. By default it created in my project. So I had to first switch to "openshift" namespace and then recreated: 

# oc create -f upstream-code/gocode/src/github.com/jboss-openshift/application-templates/jboss-image-streams.json

Then I restarted build manually:

# oc start-build eap-app

# oc get pods
NAME                    READY     STATUS    RESTARTS   AGE
eap-app-1-build         1/1       Running   0          1m
eap-app-mysql-1-7ixcq   1/1       Running   0          17m
[root@rhel73 ~]# oc logs eap-app-1-build --follow
Pulling image
"registry.access.redhat.com/jboss-eap-6/eap64-openshift@sha256:f623c3816ee071726b7c111aed9ee9702ef70938f06b8b756ef4f7e18ca69dcf"
...
Pulling image
"registry.access.redhat.com/jboss-eap-6/eap64-openshift@sha256:f623c3816ee071726b7c111aed9ee9702ef70938f06b8b756ef4f7e18ca69dcf"
...
Cloning "https://github.com/jboss-openshift/openshift-quickstarts" ...
	Commit:	caec20220374804b2cb3d3622a754f9091af7c57 (Fixed bug: summary is displayed instead of description (cherry picked
from com..)
	Author:	Marko Luksa <marko.luksa>
	Date:	Tue Feb 9 22:55:09 2016 +0100
Found pom.xml... attempting to build with 'mvn -e -Popenshift -DskipTests -Dcom.redhat.xpaas.repo.redhatga package
-Djava.net.preferIPv4Stack=true '
Picked up JAVA_TOOL_OPTIONS: -Duser.home=/home/jboss -Duser.name=jboss
Using Apache Maven 3.0.5 (Red Hat 3.0.5-16)
Maven home: /usr/share/maven
Java version: 1.8.0_111, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.111-1.b15.el7_2.x86_64/jre
Default locale: en_US, platform encoding: ANSI_X3.4-1968
OS name: "linux", version: "3.10.0-512.el7.x86_64", arch: "amd64", family: "unix"
Picked up JAVA_TOOL_OPTIONS: -Duser.home=/home/jboss -Duser.name=jboss
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OpenShift Quickstarts: Todo List: JDBC 1.2.0.Final
[INFO] ------------------------------------------------------------------------
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom (7 KB
at 24.7 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom (11 KB at 132.7 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/19/maven-parent-19.pom
25/25 KB   
Downloaded: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/19/maven-parent-19.pom (25 KB at 172.0 KB/sec)
error: short write

So the good thing is that it seems I can reproduce the issue, but wondering as I had to go through many more steps than you had listed. 

Is you environment already setup for the other things I did, or am I missing something?

Comment 4 Avesh Agarwal 2016-10-28 17:52:01 UTC
Also I just noticed the pods status changed from running to error:

#oc get pods
NAME                    READY     STATUS    RESTARTS   AGE
eap-app-1-build         0/1       Error     0          5m
eap-app-2-build         1/1       Running   0          1m
eap-app-mysql-1-7ixcq   1/1       Running   0          22m
[root@rhel73 ~]# oc get pod
NAME                    READY     STATUS    RESTARTS   AGE
eap-app-1-build         0/1       Error     0          6m
eap-app-2-build         0/1       Error     0          1m
eap-app-mysql-1-7ixcq   1/1       Running   0          22m
[root@rhel73 ~]# oc get pod
NAME                    READY     STATUS    RESTARTS   AGE
eap-app-1-build         0/1       Error     0          6m
eap-app-2-build         0/1       Error     0          1m
eap-app-mysql-1-7ixcq   1/1       Running   0          22m

Comment 5 Avesh Agarwal 2016-10-28 17:53:04 UTC
#oc get builds
NAME        TYPE      FROM          STATUS    STARTED         DURATION
eap-app-1   Source    Git@caec202   Failed    7 minutes ago   4m45s
eap-app-2   Source    Git@caec202   Failed    2 minutes ago   1m11s

So although I see the short write issue, but the builds are failing in my setup.

Comment 6 Avesh Agarwal 2016-10-28 17:54:47 UTC
# oc logs eap-app-2-build
Pulling image
"registry.access.redhat.com/jboss-eap-6/eap64-openshift@sha256:f623c3816ee071726b7c111aed9ee9702ef70938f06b8b756ef4f7e18ca69dcf"
...
Pulling image
"registry.access.redhat.com/jboss-eap-6/eap64-openshift@sha256:f623c3816ee071726b7c111aed9ee9702ef70938f06b8b756ef4f7e18ca69dcf"
...
Cloning "https://github.com/jboss-openshift/openshift-quickstarts" ...
	Commit:	caec20220374804b2cb3d3622a754f9091af7c57 (Fixed bug: summary is displayed instead of description (cherry picked
from com..)
	Author:	Marko Luksa <marko.luksa>
	Date:	Tue Feb 9 22:55:09 2016 +0100
Found pom.xml... attempting to build with 'mvn -e -Popenshift -DskipTests -Dcom.redhat.xpaas.repo.redhatga package
-Djava.net.preferIPv4Stack=true '
Picked up JAVA_TOOL_OPTIONS: -Duser.home=/home/jboss -Duser.name=jboss
Using Apache Maven 3.0.5 (Red Hat 3.0.5-16)
Maven home: /usr/share/maven
Java version: 1.8.0_111, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.111-1.b15.el7_2.x86_64/jre
Default locale: en_US, platform encoding: ANSI_X3.4-1968
OS name: "linux", version: "3.10.0-512.el7.x86_64", arch: "amd64", family: "unix"
Picked up JAVA_TOOL_OPTIONS: -Duser.home=/home/jboss -Duser.name=jboss
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building OpenShift Quickstarts: Todo List: JDBC 1.2.0.Final
[INFO] ------------------------------------------------------------------------
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.pom (7 KB
at 24.4 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/19/maven-plugins-19.pom (11 KB at 165.4 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/19/maven-parent-19.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/19/maven-parent-19.pom
25/25 KB   
Downloaded: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/19/maven-parent-19.pom (25 KB at 290.7 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/apache/9/apache-9.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/apache/9/apache-9.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/apache/9/apache-9.pom
Downloading: https://repo1.maven.org/maven2/org/apache/apache/9/apache-9.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/apache/9/apache-9.pom (15 KB at 269.2 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar
26/26 KB   
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.5/maven-resources-plugin-2.5.jar (26 KB
at 280.8 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.pom (8
KB at 102.2 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom (13 KB at 198.4 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-parent/16/maven-parent-16.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-parent/16/maven-parent-16.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/16/maven-parent-16.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom
23/23 KB   
Downloaded: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 KB at 366.6 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/apache/7/apache-7.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/apache/7/apache-7.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/apache/7/apache-7.pom
Downloading: https://repo1.maven.org/maven2/org/apache/apache/7/apache-7.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/apache/7/apache-7.pom (15 KB at 227.3 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar
27/29 KB   
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.3.2/maven-compiler-plugin-2.3.2.jar (29
KB at 347.5 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.pom (11 KB
at 164.5 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/surefire/surefire/2.10/surefire-2.10.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/surefire/surefire/2.10/surefire-2.10.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/surefire/surefire/2.10/surefire-2.10.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/surefire/surefire/2.10/surefire-2.10.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/surefire/surefire/2.10/surefire-2.10.pom (12 KB at 179.1 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-parent/20/maven-parent-20.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-parent/20/maven-parent-20.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/20/maven-parent-20.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/20/maven-parent-20.pom
25/25 KB   
Downloaded: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/20/maven-parent-20.pom (25 KB at 343.4 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.jar
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.jar
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.jar
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.jar
27/30 KB   
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.10/maven-surefire-plugin-2.10.jar (30 KB
at 337.8 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.pom (7 KB at 117.2
KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.jar
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.jar
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.jar
Downloading: https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.jar
27/76 KB   
64/76 KB   
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/plugins/maven-war-plugin/2.1.1/maven-war-plugin-2.1.1.jar (76 KB at
900.4 KB/sec)
Downloading:
https://repo1.maven.org/maven2/org/jboss/spec/javax/servlet/jboss-servlet-api_3.0_spec/1.0.0.Final/jboss-servlet-api_3.0_spec-1.0.0.Final.pom
Downloaded:
https://repo1.maven.org/maven2/org/jboss/spec/javax/servlet/jboss-servlet-api_3.0_spec/1.0.0.Final/jboss-servlet-api_3.0_spec-1.0.0.Final.pom
(2 KB at 26.4 KB/sec)
Downloading:
https://repo1.maven.org/maven2/org/jboss/spec/jboss-specs-parent/1.0.0.Beta2/jboss-specs-parent-1.0.0.Beta2.pom
Downloaded:
https://repo1.maven.org/maven2/org/jboss/spec/jboss-specs-parent/1.0.0.Beta2/jboss-specs-parent-1.0.0.Beta2.pom (4 KB at
52.7 KB/sec)
Downloading: https://repo1.maven.org/maven2/org/jboss/jboss-parent/5/jboss-parent-5.pom
Downloaded:
https://repo1.maven.org/maven2/org/jboss/jboss-parent/5/jboss-parent-5.pom (19 KB at 266.0 KB/sec)
Downloading:
https://repo1.maven.org/maven2/org/jboss/spec/javax/servlet/jboss-servlet-api_3.0_spec/1.0.0.Final/jboss-servlet-api_3.0_spec-1.0.0.Final.jar
27/70 KB   
64/70 KB   
Downloaded:
https://repo1.maven.org/maven2/org/jboss/spec/javax/servlet/jboss-servlet-api_3.0_spec/1.0.0.Final/jboss-servlet-api_3.0_spec-1.0.0.Final.jar
(70 KB at 886.4 KB/sec)
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ todolist-jdbc ---
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (2 KB at 23.7 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9 KB at 144.8 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-parent/5/maven-parent-5.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-parent/5/maven-parent-5.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-parent/5/maven-parent-5.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 KB at 209.6 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/apache/3/apache-3.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/apache/3/apache-3.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/apache/3/apache-3.pom
Downloading: https://repo1.maven.org/maven2/org/apache/apache/3/apache-3.pom
Downloaded: https://repo1.maven.org/maven2/org/apache/apache/3/apache-3.pom (4 KB at
55.8 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-project/2.0.6/maven-project-2.0.6.pom (3 KB at 48.6 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-settings/2.0.6/maven-settings-2.0.6.pom (2 KB at 31.0 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-model/2.0.6/maven-model-2.0.6.pom (3 KB at 48.8 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
Downloading: https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom
Downloaded:
https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (2 KB at 28.2 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
Downloading: https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom
Downloaded:
https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9 KB at 136.9 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
Downloading:
https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
Downloaded:
https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom
(4 KB at 71.4 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
Downloading: https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom
Downloaded: 
https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 6.8
KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
Downloading: https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom
Downloaded: 
https://repo1.maven.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (6 KB at 91.8 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/junit/junit/3.8.1/junit-3.8.1.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/junit/junit/3.8.1/junit-3.8.1.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/junit/junit/3.8.1/junit-3.8.1.pom
Downloading: https://repo1.maven.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom
Downloaded: https://repo1.maven.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 16.0
KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
Downloading: https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom
Downloaded: 
https://repo1.maven.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (7 KB at 108.0 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
Downloading: https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom
Downloaded:
https://repo1.maven.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (4 KB at 47.0 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-profile/2.0.6/maven-profile-2.0.6.pom (2 KB at 29.7 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-artifact-manager/2.0.6/maven-artifact-manager-2.0.6.pom (3 KB at
38.8 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-repository-metadata/2.0.6/maven-repository-metadata-2.0.6.pom (2
KB at 36.1 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-artifact/2.0.6/maven-artifact-2.0.6.pom (2 KB at 23.7 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-registry/2.0.6/maven-plugin-registry-2.0.6.pom (2 KB at
27.5 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-core/2.0.6/maven-core-2.0.6.pom (7 KB at 119.2 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0.6/maven-plugin-parameter-documenter-2.0.6.pom
(2 KB at 30.1 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0.6/maven-reporting-api-2.0.6.pom (2 KB
at 32.3 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/reporting/maven-reporting/2.0.6/maven-reporting-2.0.6.pom (2 KB at 23.4
KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom
Downloaded: 
https://repo1.maven.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0-alpha-7/doxia-sink-api-1.0-alpha-7.pom (424 B
at 7.4 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom
Downloading: https://repo1.maven.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom
Downloaded: 
https://repo1.maven.org/maven2/org/apache/maven/doxia/doxia/1.0-alpha-7/doxia-1.0-alpha-7.pom (4 KB at 61.6 KB/sec)
Downloading:
https://maven.repository.redhat.com/ga/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/earlyaccess/all/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom
Downloading:
https://maven.repository.redhat.com/techpreview/all/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom
Downloading:
https://repo1.maven.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom
Downloaded:
https://repo1.maven.org/maven2/org/apache/maven/maven-error-diagnostics/2.0.6/maven-error-diagnostics-2.0.6.pom (2 KB at
30.3 KB/sec)
Downloading: https://maven.repository.redhat.com/ga/commons-cli/commons-cli/1.0/commons-cli-1.0.pom
Downloading: https://maven.repository.redhat.com/earlyaccess/all/commons-cli/commons-cli/1.0/commons-cli-1.0.pom
Downloading: https://maven.repository.redhat.com/techpreview/all/commonerror: short write

Comment 7 Avesh Agarwal 2016-10-28 18:02:44 UTC
I am checking controller logs and it seems that build was successful internally:


[INFO] Packaging webapp
[INFO] Assembling webapp [todolist-jdbc] in [/home/jboss/source/target/todolist-jdbc]
[INFO] Processing war project
[INFO] Copying webapp resources [/home/jboss/source/src/main/webapp]
[INFO] Webapp assembled in [19 msecs]
[INFO] Building war: /home/jboss/source/deployments/ROOT.war
[INFO] WEB-INF/web.xml already added, skipping
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 59.320s
[INFO] Finished at: Fri Oct 28 13:50:44 EDT 2016
[INFO] Final Memory: 13M/161M
[INFO] ------------------------------------------------------------------------
Copying all war artifacts from /home/jboss/source/target directory into /opt/eap/standalone/deployments for later deployment...
Copying all ear artifacts from /home/jboss/source/target directory into /opt/eap/standalone/deployments for later deployment...
Copying all rar artifacts from /home/jboss/source/target directory into /opt/eap/standalone/deployments for later deployment...
Copying all jar artifacts from /home/jboss/source/target directory into /opt/eap/standalone/deployments for later deployment...
Copying all war artifacts from /home/jboss/source/deployments directory into /opt/eap/standalone/deployments for later deployment...
'/home/jboss/source/deployments/ROOT.war' -> '/opt/eap/standalone/deployments/ROOT.war'
Copying all ear artifacts from /home/jboss/source/deployments directory into /opt/eap/standalone/deployments for later deployment...
Copying all rar artifacts from /home/jboss/source/deployments directory into /opt/eap/standalone/deployments for later deployment...
Copying all jar artifacts from /home/jboss/source/deployments directory into /opt/eap/standalone/deployments for later deployment...
Pushing image 172.30.93.226:5000/myproject/eap-app:latest ...
Registry server Address: 
Registry server User Name: serviceaccount
Registry server Email: serviceaccount
Registry server Password: <<non-empty>>
error: build error: Failed to push image: Error parsing HTTP response: unexpected end of JSON input: ""

It seems an issue with the registry.

Comment 8 Avesh Agarwal 2016-10-28 18:52:55 UTC
So it was the issue with my setup using incorrect/old registry images as oc cluster up did not pick it up and that wreaked havoc in my cluster causing build failures (that was actually push to registry was failed though build was successful). 

So anyway I can reproduce the original issue( short write) consistently.

Comment 9 Avesh Agarwal 2016-10-29 02:03:24 UTC
I have localized the issue and it is happening as os.Stdout has been replaced with term.NewResponsiveWriter(os.Stdout) in pkg/cmd/cli/cli.go. Restoring back to os.Stdout solves the problem, though I am looking into fixing term.NewResponsiveWriter

Comment 10 Avesh Agarwal 2016-10-31 02:49:40 UTC
The issue is with https://github.com/mitchellh/go-wordwrap/blob/master/wordwrap.go#L14, I will send a patch soon.

Comment 11 Avesh Agarwal 2016-11-01 01:39:57 UTC
PR to address this issue: https://github.com/openshift/origin/pull/11680

Comment 12 Avesh Agarwal 2016-11-04 12:59:55 UTC
The PR https://github.com/openshift/origin/pull/11680 is merged in origin.

Comment 13 Avesh Agarwal 2016-11-04 15:19:20 UTC
As the PR is merged, should I changed this bug's state to Modified? Or should I create a cherry-pick for ocp 3.4 and once the cherry-pick is merged then change this bug's state to Modified?

Comment 14 Andy Goldstein 2016-11-04 17:08:57 UTC
No cherry pick needed

Comment 16 Vikas Laad 2016-11-09 02:33:50 UTC
Verified this bug with following version, Did 4 rounds of 40 consecutive builds. Did not run into this problem in all 4 runs.

openshift v3.4.0.23+24b1a58
kubernetes v1.4.0+776c994
etcd 3.1.0-rc.0

Comment 17 DeShuai Ma 2016-11-09 02:36:08 UTC
Created attachment 1218782 [details]
Add eap-build-logs

Test on openshift v3.4.0.23+24b1a58
verify the bug

Comment 19 errata-xmlrpc 2017-01-18 12:47:11 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHBA-2017:0066


Note You need to log in before you can comment on or make changes to this bug.