This file contains hidden or 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
| Errno::EPIPE: Broken pipe | |
| from /usr/lib/ruby/1.8/net/protocol.rb:177:in `write' | |
| from /usr/lib/ruby/1.8/net/protocol.rb:177:in `write0' | |
| from /usr/lib/ruby/1.8/net/protocol.rb:153:in `write' | |
| from /usr/lib/ruby/1.8/net/protocol.rb:168:in `writing' | |
| from /usr/lib/ruby/1.8/net/protocol.rb:152:in `write' | |
| from /usr/lib/ruby/1.8/net/http.rb:1544:in `send_request_with_body' | |
| from /usr/lib/ruby/1.8/net/http.rb:1529:in `exec' | |
| from /usr/lib/ruby/1.8/net/http.rb:1048:in `request' | |
| from /usr/lib/ruby/1.8/net/http.rb:992:in `post2' |
This file contains hidden or 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
| sdqali@sdqali:~/src/sdqali/bugzilla4r$ irb | |
| irb(main):001:0> require 'xmlrpc/client' | |
| => true | |
| irb(main):002:0> handler = XMLRPC::Client.new2('http://localhost/bugzilla3/xmlrpc.cgi') | |
| => #<XMLRPC::Client:0xb775d458 @http=#<Net::HTTP localhost:80 open=false>, @proxy_host=nil, @http_last_response=nil, @parser=nil, @timeout=30, @path="/bugzilla3/xmlrpc.cgi", @password=nil, @http_header_extra=nil, @use_ssl=false, @host="localhost", @user=nil, @proxy_port=nil, @auth=nil, @cookie=nil, @create=nil, @port=80> | |
| irb(main):003:0> user = handler.proxy("User") | |
| => #<XMLRPC::Client::Proxy:0xb7880b50 @meth=:call, @args=[], @prefix="User.", @server=#<XMLRPC::Client:0xb775d458 @http=#<Net::HTTP localhost:80 open=false>, @proxy_host=nil, @http_last_response=nil, @parser=nil, @timeout=30, @path="/bugzilla3/xmlrpc.cgi", @password=nil, @http_header_extra=nil, @use_ssl=false, @host="localhost", @user=nil, @proxy_port=nil, @auth=nil, @cookie=nil, @create=nil, @port=80>> | |
| irb(main):004:0> user.login({'login' => 'mira@localhost.localdomain' |
This file contains hidden or 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
| require 'xmlrpc/client' | |
| handler = XMLRPC::Client.new2('http://localhost/bugzilla3/xmlrpc.cgi') | |
| user = handler.proxy("User") | |
| user.login({'login' => 'mira@localhost.localdomain', 'password' => 'fgffty', 'remember' => 'true'}) | |
| bugs = handler.proxy("Bug") | |
| puts bugs.get({'ids' => [1]}) |
This file contains hidden or 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
| file:/opt/mira/demo-app/vendor/jars/jruby-complete-1.4.0.jar!/META-INF/jruby.home/lib/ruby/1.8/net/protocol.rb:135:in `rbuf_fill': execution expired (Timeout::Error) | |
| from file:/opt/mira/demo-app/vendor/jars/jruby-complete-1.4.0.jar!/META-INF/jruby.home/lib/ruby/1.8/net/protocol.rb:134:in `rbuf_fill' | |
| from file:/opt/mira/demo-app/vendor/jars/jruby-complete-1.4.0.jar!/META-INF/jruby.home/lib/ruby/1.8/net/protocol.rb:116:in `readuntil' | |
| from file:/opt/mira/demo-app/vendor/jars/jruby-complete-1.4.0.jar!/META-INF/jruby.home/lib/ruby/1.8/net/protocol.rb:126:in `readline' | |
| from file:/opt/mira/demo-app/vendor/jars/jruby-complete-1.4.0.jar!/META-INF/jruby.home/lib/ruby/1.8/net/http.rb:2020:in `read_status_line' | |
| from file:/opt/mira/demo-app/vendor/jars/jruby-complete-1.4.0.jar!/META-INF/jruby.home/lib/ruby/1.8/net/http.rb:2009:in `read_new' | |
| from file:/opt/mira/demo-app/vendor/jars/jruby-complete-1.4.0.jar!/META-INF/jruby.home/lib/ruby/1.8/net/http.rb:1050:in `request' | |
This file contains hidden or 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
| sdqali@sdqali:~$ diff /opt/mingle_3_0/MingleServer /opt/mingle_3_1/MingleServer | |
| 68,72c68,69 | |
| < if [[ "$MINGLE_DATADIR" =~ /$ ]]; then | |
| < MINGLE_CONFIGDIR=$MINGLE_DATADIR"config" | |
| < else | |
| < MINGLE_CONFIGDIR=$MINGLE_DATADIR"/config" | |
| < fi | |
| --- | |
| > MINGLE_DATADIR_WITHOUT_ENDING_SLASH=`echo $MINGLE_DATADIR|sed 's/\/$//'` | |
| > MINGLE_CONFIGDIR=$MINGLE_DATADIR_WITHOUT_ENDING_SLASH"/config" |
This file contains hidden or 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
| Starting MingleServer | |
| cd - | |
| Waiting for Mingle to start up... | |
| ...done. | |
| ..F | |
| 1) | |
| Selenium::WebDriver::Error::NoSuchElementError in 'Functional Tests after(:all)' | |
| Unable to locate element: {"method":"xpath","selector":"//*[@id='notice' and contains(text(), 'was successfully deleted.')]"} | |
| ./spec/ruby/functional/functional_spec.rb:151:in `wait_for_info_box' |
This file contains hidden or 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
| sdqali@sdqali:~/src/work/dependency_tracker$ rake functional_tests | |
| (in /home/sdqali/src/work/dependency_tracker) | |
| F. | |
| 1) | |
| RuntimeError in 'Functional Tests Adding a dependency to a card.' | |
| timed out | |
| ./spec/ruby/functional/functional_spec.rb:207:in `check_timeout' | |
| ./spec/ruby/functional/functional_spec.rb:200:in `on' | |
| ./spec/ruby/functional/functional_spec.rb:168:in `wait_until' |
This file contains hidden or 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
| Finished in 4.612 seconds | |
| 118 examples, 0 failures | |
| cruise@blrstdsol01:/var/lib/cruise-agent/pipelines/D-T-Functional-Tests$ rake func | |
| (in /var/lib/cruise-agent/pipelines/D-T-Functional-Tests) | |
| FF | |
| 1) | |
| Selenium::WebDriver::Error::WebDriverError in 'Functional Tests before(:all)' | |
| unable to obtain stable firefox connection in 60 seconds |
This file contains hidden or 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
| + minglestatus=The daemon is stopped. | |
| + [ The daemon is stopped. != The daemon is running. ] | |
| + echo Starting MingleServer | |
| + nohup /usr/bin/java -server -Dinstall4j.jvmDir=/usr -Dexe4j.moduleName=/home/mira/mingle_3_1/MingleServer -Xms512m -Xmx1024m -XX:MaxPermSize=128m -XX:+UseConcMarkSweepGC -Djruby.compile.mode=OFF -Djava.awt.headless=true -Dmingle.dataDir=/home/mira/mingle_3_1_data -Dmingle.configDir=/home/mira/mingle_3_1_data/config -Dmingle.swapDir=/home/mira/mingle_3_1_data/swap -Dmingle.appContext=/ -Dmingle.memcachedPort=11211 -Dmingle.port=8080 -Dmingle.logDir=/export/users/arusarh/log -Dmingle.memcachedHost=127.0.0.1 -Dmingle.dataDir=/home/mira/mingle_3_1_data -Dmingle.logDir=/export/users/arusarh/log -classpath /home/mira/mingle_3_1/.install4j/i4jruntime.jar:/home/mira/mingle_3_1/vendor/java/activation-1.1.jar:/home/mira/mingle_3_1/vendor/java/activemq-all-5.2.0.jar:/home/mira/mingle_3_1/vendor/java/activemq-web-5.2.0.jar:/home/mira/mingle_3_1/vendor/java/ant.jar:/home/mira/mingle_3_1/vendor/java/b |
This file contains hidden or 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
| 0 20 20 Arial 0,0,0 8 500 version 3_1 20 40 Arial 0,0,0 8 500 -1 | |
| + exit 0 | |
| cd - | |
| Waiting for Mingle to start up... | |
| ...done. | |
| FF | |
| 1) | |
| Timeout::Error in 'Functional Tests before(:all)' | |
| execution expired |