greenlaw110 / greenscript

A tool help web developers manage javascript/css rendering, including minimize and dependence management
42 stars 24 forks source link

Greenscript 1.2.6l doesn't work in Heroku #28

Closed pvillega closed 12 years ago

pvillega commented 12 years ago

I'm using greenscript v1.2.6l with Play 1.2.3

When the app is deployed in Heroku, the css/javascript generated can't be found, even if I enable the inmemory caching:

added to application.conf

greenscript.cache.inmemory=true

Setting the following flags:

greenscript.minimize=false greenscript.compress=false

disables the Javascript processing but NOT the css processing, so the error persists.

STEPS TO REPRODUCE

ISSUES

It seems the in-memory caching is not working. That should be fixed

Disabling minimization does not disable css processing

greenlaw110 commented 12 years ago

Hi is there any stackoverflow observed?

On Sun, Nov 20, 2011 at 3:39 AM, Pere Villega < reply@reply.github.com

wrote:

I'm using greenscript v1.2.6l with Play 1.2.3

When the app is deployed in Heroku, the css/javascript generated can't be found, even if I enable the inmemory caching:

added to application.conf

greenscript.cache.inmemory=true

Setting the following flags:

greenscript.minimize=false greenscript.compress=false

disables the Javascript processing but NOT the css processing, so the error persists.

STEPS TO REPRODUCE

  • create a free Heroku app
  • add some javascript and css to be compressed with Greenscript
  • publish the application in Heroku

ISSUES

It seems the in-memory caching is not working. That should be fixed

Disabling minimization does not disable css processing


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28

pvillega commented 12 years ago

Hi,

no, no exception in the output sadly :( It simply just doesn't work. If inmemory cache is disabled the "gs" folder is not created (which makes sense as Heroku's file system is read only). If I enable "inmemory" no folder is created, no error is raised but the javascript (still referenced by /public/gs/xxxxxx.js) is ntoa vailable.

Any attempt to load it returns a 404 error (not found)

The issue "Disabling minimization does not disable css processing" can be verified locally, just add css to the greenscript.css script and disable minimization. It stills processes them into 1 file.

greenlaw110 commented 12 years ago

when inmemory is enabled reference to "/public/gs/xxxxxx.js" is interpreted to greenscript and should return the inmemory copy. Can you confirm that in your local app instance?

css is always concatenated since version 1.2.6 for the sake of LESS support. Is there any problem with it?

On Sun, Nov 20, 2011 at 6:13 AM, Pere Villega < reply@reply.github.com

wrote:

Hi,

no, no exception in the output sadly :( It simply just doesn't work. If inmemory cache is disabled the "gs" folder is not created (which makes sense as Heroku's file system is read only). If I enable "inmemory" no folder is created, no error is raised but the javascript (still referenced by /public/gs/xxxxxx.js) is ntoa vailable.

Any attempt to load it returns a 404 error (not found)

The issue "Disabling minimization does not disable css processing" can be verified locally, just add css to the greenscript.css script and disable minimization. It stills processes them into 1 file.


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-2800352

pvillega commented 12 years ago

Hi,

I confirmed that locally it works, both in DEV and PROD mode, but it doesn't in Heroku with the same config.

If you go to http://billeteo.heroku.com , you'll see that there is no css applied. If you examine the code with Firebug, the css link generated:

/public/gs/778f4f8e-d084-43be-b374-502dac6a8433.css

returns a 404 error

The configuration is the same locally and in Heroku, the only difference is that Heroku is a "read-only" filesystem. No error is generated. That's why I suspect that the "in-memory" functionality may have a glitch (I can't confirm as not all the code is available, so I can't debug)

On the CSS, the issue is that given that in Heroku all greenscript-generated files are failing, I can disable the minimization of javascript temporally until this is solved, but I can't disable the css unification, which means the application (as you can see above) is broken. Allowing for css not to be unified would help as a workaround while the issue is fixed

Are there any configuration settings I can give you to allow you to reproduce the issue?

greenlaw110 commented 12 years ago

At the moment please switch to v1.2.5 where you can disable the css process

On Sun, Nov 20, 2011 at 7:23 AM, Pere Villega < reply@reply.github.com

wrote:

Hi,

I confirmed that locally it works, both in DEV and PROD mode, but it doesn't in Heroku with the same config.

If you go to http://billeteo.heroku.com , you'll see that there is no css applied. If you examine the code with Firebug, the css link generated:

/public/gs/778f4f8e-d084-43be-b374-502dac6a8433.css

returns a 404 error

The configuration is the same locally and in Heroku, the only difference is that Heroku is a "read-only" filesystem. No error is generated. That's why I suspect that the "in-memory" functionality may have a glitch (I can't confirm as not all the code is available, so I can't debug)

On the CSS, the issue is that given that in Heroku all greenscript-generated files are failing, I can disable the minimization of javascript temporally until this is solved, but I can't disable the css unification, which means the application (as you can see above) is broken. Allowing for css not to be unified would help as a workaround while the issue is fixed

Are there any configuration settings I can give you to allow you to reproduce the issue?


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-2800699

pvillega commented 12 years ago

Thanks, with 1.2.5 I can disable the process. If I can provide some data you may need please let me know. Possibly relevant details:

greenscript.cache.inmemory=true

greenlaw110 commented 12 years ago

Can u try my fix by downloading the lib.zip at http://ge.tt/9ecMJAA?c and then unzip to your greenscript/lib folder?

Please let me know if it works.

On Sun, Nov 20, 2011 at 7:49 AM, Pere Villega < reply@reply.github.com

wrote:

Thanks, with 1.2.5 I can disable the process. If I can provide some data you may need please let me know. Possibly relevant details:

  • Play 1.2.3 with PostgreSQL 8.3
  • Heroku server (free, 1 web dino, 5 mb database)
  • Config related to Greenscript in Application.conf (greenscript is loaded via dependencies.yml):

greenscript.cache.inmemory=true

  • Other Modules I use: betterlogs 1.0 cobertura 2.1 mockito 0.1 greenscript 1.2.5 pdf 0.7

Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-2800854

pvillega commented 12 years ago

I'm afraid it doesn't work :( No exception either.

There's any chance you may add additonal logging (info level) to the files to help you find the problem? I can take it and copy it here.

greenlaw110 commented 12 years ago

put this under ur lib folder and send me the log file pls

http://ge.tt/81nqLAA?c

Note, the greenscript version should be 1.2.6m1, otherwise u r not using the correct jar

On Sun, Nov 20, 2011 at 8:11 AM, Pere Villega < reply@reply.github.com

wrote:

I'm afraid it doesn't work :( No exception either.

There's any chance you may add additonal logging (info level) to the files to help you find the problem? I can take it and copy it here.


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-2800956

pvillega commented 12 years ago

Log from Heroku:

2011-11-19T21:38:27+00:00 heroku[web.1]: Starting process with command play run --http.port=31309 --%prod -Dprecompiled=true 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,681 INFO ~ Starting /app 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,684 INFO ~ Module greenscript is available (/app/modules/greenscript-1.2.6l) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,684 INFO ~ Module pdf is available (/app/modules/pdf-0.7) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,685 INFO ~ Module mockito is available (/app/modules/mockito-0.1) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,685 INFO ~ Module cobertura is available (/app/modules/cobertura-2.1) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,685 INFO ~ Module PayPal is available (/app/modules/PayPal-0.1) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,685 INFO ~ Module betterlogs is available (/app/modules/betterlogs-1.0) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,858 INFO ~ Application is precompiled 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,898 INFO ~ GreenScript-1.2.6m1> dependency loaded 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,899 INFO ~ GreenScript-1.2.6m1> initialized 2011-11-19T21:38:30+00:00 heroku[web.1]: Error R12 (Exit timeout) -> Process failed to exit within 10 seconds of SIGTERM 2011-11-19T21:38:30+00:00 heroku[web.1]: Stopping process with SIGKILL 2011-11-19T21:38:30+00:00 app[web.1]: 21:38:30,840 WARN ~ Using implementation version: Rhino 1.6 release 7 2007 08 19 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,404 INFO ~ set inmemory cache: true 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,404 INFO ~ GreenScript-1.2.6m1> minimizer initialized 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,405 INFO ~ route added: /public/gs//{key} handled by greenscript.Service.getInMemoryCache 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,550 INFO ~ Added {QA sa=mc7.ec2.northscale.net/10.82.127.172:11211, #Rops=0, #Wops=0, #iq=0, topRop=null, topWop=null, toWrite=0, interested=0} to connect queue 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,553 INFO ~ Connected to memcached 2011-11-19T21:38:32+00:00 app[web.1]: 21:38:32,009 INFO ~ Connected to jdbc:postgresql://ec2-107-22-181-224.compute-1.amazonaws.com/nwfkatnlfq 2011-11-19T21:38:32+00:00 app[web.1]: 21:38:32,154 INFO ~ Connection state changed for sun.nio.ch.SelectionKeyImpl@69b01afa 2011-11-19T21:38:32+00:00 heroku[web.1]: Process exited 2011-11-19T21:38:34+00:00 app[web.1]: 21:38:34,139 INFO ~ [/app/controllers/initialize/InitController.java:36] doJob() :: Starting application initialization 2011-11-19T21:38:34+00:00 app[web.1]: 21:38:34,642 INFO ~ Listening for HTTP on port 31309 ... 2011-11-19T21:38:36+00:00 heroku[web.1]: State changed from starting to up 2011-11-19T21:38:56+00:00 app[web.1]: 21:38:56,724 INFO ~ [/app/controllers/CommonController.java:41] commonData() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 -- CommonController commonData method executing 476 es 2011-11-19T21:39:00+00:00 heroku[router]: GET billeteo.herokuapp.com/ dyno=web.1 queue=0 wait=0ms service=3573ms status=200 bytes=28391 2011-11-19T21:39:00+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/a9141b2d-7638-498b-b6fc-dc3103aab4d9.css dyno=web.1 queue=0 wait=0ms service=291ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.js dyno=web.1 queue=0 wait=1ms service=83ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/94c83646-27bb-4ab5-9ee0-0a00851c1bac.js dyno=web.1 queue=0 wait=0ms service=108ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.js dyno=web.1 queue=0 wait=0ms service=40ms status=404 bytes=4222 2011-11-19T21:39:02+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/94c83646-27bb-4ab5-9ee0-0a00851c1bac.js dyno=web.1 queue=0 wait=0ms service=32ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/a9141b2d-7638-498b-b6fc-dc3103aab4d9.css dyno=web.1 queue=0 wait=0ms service=36ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.js dyno=web.1 queue=0 wait=0ms service=28ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 app[web.1]: 21:39:03,865 INFO ~ [/app/controllers/CommonController.java:41] commonData() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 -- CommonController commonData method executing 476 es 2011-11-19T21:39:34+00:00 app[web.1]: 21:39:34,309 INFO ~ [/app/controllers/jobs/OpenBilleteo.java:33] doJob() :: Maintenance job (UUID: 4c606b66-327e-4eba-af9e-b8be4007a55b): OpenBilleteo 2011-11-19T21:39:34+00:00 app[web.1]: 21:39:34,350 INFO ~ [/app/controllers/jobs/OpenBilleteo.java:41] doJob() :: Maintenance job (UUID: 4c606b66-327e-4eba-af9e-b8be4007a55b): open -> true , time left -> 0 2011-11-19T21:39:34+00:00 app[web.1]: 21:39:34,350 INFO ~ [/app/controllers/jobs/OpenBilleteo.java:47] doJob() :: Maintenance job (UUID: 4c606b66-327e-4eba-af9e-b8be4007a55b): OpenBilleteo DONE

As you can see in here, I get 404 on the greenscript-related files:

2011-11-19T21:39:00+00:00 heroku[router]: GET billeteo.herokuapp.com/ dyno=web.1 queue=0 wait=0ms service=3573ms status=200 bytes=28391 2011-11-19T21:39:00+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/a9141b2d-7638-498b-b6fc-dc3103aab4d9.css dyno=web.1 queue=0 wait=0ms service=291ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.js dyno=web.1 queue=0 wait=1ms service=83ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/94c83646-27bb-4ab5-9ee0-0a00851c1bac.js dyno=web.1 queue=0 wait=0ms service=108ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.js dyno=web.1 queue=0 wait=0ms service=40ms status=404 bytes=4222 2011-11-19T21:39:02+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/94c83646-27bb-4ab5-9ee0-0a00851c1bac.js dyno=web.1 queue=0 wait=0ms service=32ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/a9141b2d-7638-498b-b6fc-dc3103aab4d9.css dyno=web.1 queue=0 wait=0ms service=36ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.js dyno=web.1 queue=0 wait=0ms service=28ms status=404 bytes=4222

No other logs generated by Greenscript. The ones that I can see related:

2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,898 INFO ~ GreenScript-1.2.6m1> dependency loaded 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,899 INFO ~ GreenScript-1.2.6m1> initialized 2011-11-19T21:38:30+00:00 app[web.1]: 21:38:30,840 WARN ~ Using implementation version: Rhino 1.6 release 7 2007 08 19 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,404 INFO ~ set inmemory cache: true 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,404 INFO ~ GreenScript-1.2.6m1> minimizer initialized

greenlaw110 commented 12 years ago

try this pls:

http://ge.tt/8xW7NAA?c

On Sun, Nov 20, 2011 at 8:42 AM, Pere Villega < reply@reply.github.com

wrote:

Log from Heroku:

2011-11-19T21:38:27+00:00 heroku[web.1]: Starting process with command play run --http.port=31309 --%prod -Dprecompiled=true 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,681 INFO ~ Starting /app 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,684 INFO ~ Module greenscript is available (/app/modules/greenscript-1.2.6l) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,684 INFO ~ Module pdf is available (/app/modules/pdf-0.7) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,685 INFO ~ Module mockito is available (/app/modules/mockito-0.1) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,685 INFO ~ Module cobertura is available (/app/modules/cobertura-2.1) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,685 INFO ~ Module PayPal is available (/app/modules/PayPal-0.1) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,685 INFO ~ Module betterlogs is available (/app/modules/betterlogs-1.0) 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,858 INFO ~ Application is precompiled 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,898 INFO ~ GreenScript-1.2.6m1> dependency loaded 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,899 INFO ~ GreenScript-1.2.6m1> initialized 2011-11-19T21:38:30+00:00 heroku[web.1]: Error R12 (Exit timeout) -> Process failed to exit within 10 seconds of SIGTERM 2011-11-19T21:38:30+00:00 heroku[web.1]: Stopping process with SIGKILL 2011-11-19T21:38:30+00:00 app[web.1]: 21:38:30,840 WARN ~ Using implementation version: Rhino 1.6 release 7 2007 08 19 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,404 INFO ~ set inmemory cache: true 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,404 INFO ~ GreenScript-1.2.6m1> minimizer initialized 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,405 INFO ~ route added: /public/gs//{key} handled by greenscript.Service.getInMemoryCache 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,550 INFO ~ Added {QA sa= mc7.ec2.northscale.net/10.82.127.172:11211, #Rops=0, #Wops=0, #iq=0, topRop=null, topWop=null, toWrite=0, interested=0} to connect queue 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,553 INFO ~ Connected to memcached 2011-11-19T21:38:32+00:00 app[web.1]: 21:38:32,009 INFO ~ Connected to jdbc:postgresql://ec2-107-22-181-224.compute-1.amazonaws.com/nwfkatnlfq 2011-11-19T21:38:32+00:00 app[web.1]: 21:38:32,154 INFO ~ Connection state changed for sun.nio.ch.SelectionKeyImpl@69b01afa 2011-11-19T21:38:32+00:00 heroku[web.1]: Process exited 2011-11-19T21:38:34+00:00 app[web.1]: 21:38:34,139 INFO ~ [/app/controllers/initialize/InitController.java:36] doJob() :: Starting application initialization 2011-11-19T21:38:34+00:00 app[web.1]: 21:38:34,642 INFO ~ Listening for HTTP on port 31309 ... 2011-11-19T21:38:36+00:00 heroku[web.1]: State changed from starting to up 2011-11-19T21:38:56+00:00 app[web.1]: 21:38:56,724 INFO ~ [/app/controllers/CommonController.java:41] commonData() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 -- CommonController commonData method executing 476 es 2011-11-19T21:39:00+00:00 heroku[router]: GET billeteo.herokuapp.com/dyno=web.1 queue=0 wait=0ms service=3573ms status=200 bytes=28391 2011-11-19T21:39:00+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/a9141b2d-7638-498b-b6fc-dc3103aab4d9.cssdyno=web.1 queue=0 wait=0ms service=291ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.jsdyno=web.1 queue=0 wait=1ms service=83ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/94c83646-27bb-4ab5-9ee0-0a00851c1bac.jsdyno=web.1 queue=0 wait=0ms service=108ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.jsdyno=web.1 queue=0 wait=0ms service=40ms status=404 bytes=4222 2011-11-19T21:39:02+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/94c83646-27bb-4ab5-9ee0-0a00851c1bac.jsdyno=web.1 queue=0 wait=0ms service=32ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/a9141b2d-7638-498b-b6fc-dc3103aab4d9.cssdyno=web.1 queue=0 wait=0ms service=36ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.jsdyno=web.1 queue=0 wait=0ms service=28ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 app[web.1]: 21:39:03,865 INFO ~ [/app/controllers/CommonController.java:41] commonData() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 -- CommonController commonData method executing 476 es 2011-11-19T21:39:34+00:00 app[web.1]: 21:39:34,309 INFO ~ [/app/controllers/jobs/OpenBilleteo.java:33] doJob() :: Maintenance job (UUID: 4c606b66-327e-4eba-af9e-b8be4007a55b): OpenBilleteo 2011-11-19T21:39:34+00:00 app[web.1]: 21:39:34,350 INFO ~ [/app/controllers/jobs/OpenBilleteo.java:41] doJob() :: Maintenance job (UUID: 4c606b66-327e-4eba-af9e-b8be4007a55b): open -> true , time left -> 0 2011-11-19T21:39:34+00:00 app[web.1]: 21:39:34,350 INFO ~ [/app/controllers/jobs/OpenBilleteo.java:47] doJob() :: Maintenance job (UUID: 4c606b66-327e-4eba-af9e-b8be4007a55b): OpenBilleteo DONE

As you can see in here, I get 404 on the greenscript-related files:

2011-11-19T21:39:00+00:00 heroku[router]: GET billeteo.herokuapp.com/dyno=web.1 queue=0 wait=0ms service=3573ms status=200 bytes=28391 2011-11-19T21:39:00+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/a9141b2d-7638-498b-b6fc-dc3103aab4d9.cssdyno=web.1 queue=0 wait=0ms service=291ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.jsdyno=web.1 queue=0 wait=1ms service=83ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/94c83646-27bb-4ab5-9ee0-0a00851c1bac.jsdyno=web.1 queue=0 wait=0ms service=108ms status=404 bytes=4222 2011-11-19T21:39:01+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.jsdyno=web.1 queue=0 wait=0ms service=40ms status=404 bytes=4222 2011-11-19T21:39:02+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/94c83646-27bb-4ab5-9ee0-0a00851c1bac.jsdyno=web.1 queue=0 wait=0ms service=32ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/a9141b2d-7638-498b-b6fc-dc3103aab4d9.cssdyno=web.1 queue=0 wait=0ms service=36ms status=404 bytes=4222 2011-11-19T21:39:03+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8c1d9385-5326-4c35-90f2-a91db8ca4d31.jsdyno=web.1 queue=0 wait=0ms service=28ms status=404 bytes=4222

No other logs generated by Greenscript. The ones that I can see related:

2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,898 INFO ~ GreenScript-1.2.6m1> dependency loaded 2011-11-19T21:38:28+00:00 app[web.1]: 21:38:28,899 INFO ~ GreenScript-1.2.6m1> initialized 2011-11-19T21:38:30+00:00 app[web.1]: 21:38:30,840 WARN ~ Using implementation version: Rhino 1.6 release 7 2007 08 19 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,404 INFO ~ set inmemory cache: true 2011-11-19T21:38:31+00:00 app[web.1]: 21:38:31,404 INFO ~ GreenScript-1.2.6m1> minimizer initialized


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-2801081

pvillega commented 12 years ago

New logs:

2011-11-19T21:54:00+00:00 heroku[web.1]: Starting process with command play run --http.port=53918 --%prod -Dprecompiled=true 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,081 INFO ~ Starting /app 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,083 INFO ~ Module betterlogs is available (/app/modules/betterlogs-1.0) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,083 INFO ~ Module pdf is available (/app/modules/pdf-0.7) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,084 INFO ~ Module greenscript is available (/app/modules/greenscript-1.2.6l) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,084 INFO ~ Module PayPal is available (/app/modules/PayPal-0.1) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,084 INFO ~ Module cobertura is available (/app/modules/cobertura-2.1) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,085 INFO ~ Module mockito is available (/app/modules/mockito-0.1) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,310 INFO ~ GreenScript-1.2.6m1> dependency loaded 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,311 INFO ~ GreenScript-1.2.6m1> initialized 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,590 WARN ~ Using implementation version: Rhino 1.6 release 7 2007 08 19 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,324 INFO ~ set inmemory cache: true 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,324 INFO ~ GreenScript-1.2.6m1> minimizer initialized 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,325 INFO ~ route added: /public/gs/{key} handled by greenscript.Service.getInMemoryCache 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,486 INFO ~ Added {QA sa=mc7.ec2.northscale.net/10.82.127.172:11211, #Rops=0, #Wops=0, #iq=0, topRop=null, topWop=null, toWrite=0, interested=0} to connect queue 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,489 INFO ~ Connected to memcached 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,496 INFO ~ Connection state changed for sun.nio.ch.SelectionKeyImpl@69b01afa 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,576 INFO ~ Authenticated to mc7.ec2.northscale.net/10.82.127.172:11211 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,915 INFO ~ Connected to jdbc:postgresql://ec2-107-22-181-224.compute-1.amazonaws.com/nwfkatnlfq 2011-11-19T21:54:04+00:00 app[web.1]: 21:54:04,096 WARN ~ Defaults messsages file missing 2011-11-19T21:54:04+00:00 app[web.1]: 21:54:04,333 INFO ~ [/app/controllers/initialize/InitController.java:167] doJob() :: End of application initialization 2011-11-19T21:54:04+00:00 app[web.1]: 21:54:04,439 INFO ~ Listening for HTTP on port 53918 ... 2011-11-19T21:54:05+00:00 heroku[web.1]: State changed from starting to up 2011-11-19T21:54:18+00:00 app[web.1]: 21:54:18,646 INFO ~ [/app/controllers/support/AOPController.java:22] beforeCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) ENTER action: Application.index (url: GET /) with params: {body=} 2011-11-19T21:54:18+00:00 app[web.1]: 21:54:18,668 INFO ~ [/app/controllers/CommonController.java:41] commonData() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 -- CommonController commonData method executing 476 es 2011-11-19T21:54:18+00:00 app[web.1]: 21:54:18,732 INFO ~ [/app/controllers/support/AOPController.java:22] beforeCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) ENTER action: Application.index (url: GET /) with params: {body=} 2011-11-19T21:54:21+00:00 app[web.1]: 21:54:21,637 INFO ~ [/app/controllers/support/AOPController.java:30] afterCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) END action: Application.index (url: GET /) code: 200 - chunked: false 2011-11-19T21:54:21+00:00 app[web.1]: 21:54:21,638 INFO ~ [/app/controllers/support/AOPController.java:30] afterCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) END action: Application.index (url: GET /) code: 200 - chunked: false 2011-11-19T21:54:22+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/83aea799-df22-42c8-a31d-6a9d466d4cae.css dyno=web.1 queue=0 wait=0ms service=247ms status=404 bytes=4222 2011-11-19T21:54:22+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/bef7256b-ad43-45fe-9eb3-91bedac59c4b.js dyno=web.1 queue=0 wait=0ms service=37ms status=404 bytes=4222 2011-11-19T21:54:23+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8f863214-942a-445c-ae4e-7c6dc46441dd.js dyno=web.1 queue=0 wait=1ms service=36ms status=404 bytes=4222 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,528 INFO ~ [/app/controllers/support/AOPController.java:22] beforeCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) ENTER action: Application.index (url: GET /) with params: {body=} 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,529 INFO ~ [/app/controllers/CommonController.java:41] commonData() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 -- CommonController commonData method executing 476 es 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,548 INFO ~ [/app/controllers/support/AOPController.java:22] beforeCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) ENTER action: Application.index (url: GET /) with params: {body=} 2011-11-19T21:54:24+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/83aea799-df22-42c8-a31d-6a9d466d4cae.css dyno=web.1 queue=0 wait=0ms service=32ms status=404 bytes=4222 2011-11-19T21:54:24+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/5aaea71e-11ea-4d18-beb3-ffb6c74bfdd9.js dyno=web.1 queue=0 wait=0ms service=49ms status=404 bytes=4222 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,639 INFO ~ [/app/controllers/support/AOPController.java:30] afterCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) END action: Application.index (url: GET /) code: 200 - chunked: false 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,640 INFO ~ [/app/controllers/support/AOPController.java:30] afterCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) END action: Application.index (url: GET /) code: 200 - chunked: false 2011-11-19T21:54:24+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8f863214-942a-445c-ae4e-7c6dc46441dd.js dyno=web.1 queue=0 wait=0ms service=32ms status=404 bytes=4222

Still 404. (I won't be able to post more logs for the next 12 hours, sorry about that. And THANKS for your help!)

greenlaw110 commented 12 years ago

Strange, there is one line shows that route has been updated:

2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,325 INFO ~ route added: /public/gs/{key} handled by greenscript.Service.getInMemoryCache

However, the request has not been routed to that controller at all.

As a comparison, my console shows:

08:49:25,983 INFO ~ [{module:greenscript-1.2.6l}/app/controllers/greenscript/Service.java:14|19] getInMemoryCache() :: service inmeory greenscript request: cb3fe4d1-f27e-489e-a865-bf05584eb5a1.css 08:49:25,984 INFO ~ [{module:greenscript-1.2.6l}/app/controllers/greenscript/Service.java:16|19]

getInMemoryCache() :: content from inmeomry cache: /*

...

On Sun, Nov 20, 2011 at 8:55 AM, Pere Villega < reply@reply.github.com

wrote:

New logs:

2011-11-19T21:54:00+00:00 heroku[web.1]: Starting process with command play run --http.port=53918 --%prod -Dprecompiled=true 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,081 INFO ~ Starting /app 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,083 INFO ~ Module betterlogs is available (/app/modules/betterlogs-1.0) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,083 INFO ~ Module pdf is available (/app/modules/pdf-0.7) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,084 INFO ~ Module greenscript is available (/app/modules/greenscript-1.2.6l) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,084 INFO ~ Module PayPal is available (/app/modules/PayPal-0.1) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,084 INFO ~ Module cobertura is available (/app/modules/cobertura-2.1) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,085 INFO ~ Module mockito is available (/app/modules/mockito-0.1) 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,310 INFO ~ GreenScript-1.2.6m1> dependency loaded 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,311 INFO ~ GreenScript-1.2.6m1> initialized 2011-11-19T21:54:01+00:00 app[web.1]: 21:54:01,590 WARN ~ Using implementation version: Rhino 1.6 release 7 2007 08 19 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,324 INFO ~ set inmemory cache: true 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,324 INFO ~ GreenScript-1.2.6m1> minimizer initialized 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,325 INFO ~ route added: /public/gs/{key} handled by greenscript.Service.getInMemoryCache 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,486 INFO ~ Added {QA sa= mc7.ec2.northscale.net/10.82.127.172:11211, #Rops=0, #Wops=0, #iq=0, topRop=null, topWop=null, toWrite=0, interested=0} to connect queue 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,489 INFO ~ Connected to memcached 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,496 INFO ~ Connection state changed for sun.nio.ch.SelectionKeyImpl@69b01afa 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,576 INFO ~ Authenticated to mc7.ec2.northscale.net/10.82.127.172:11211 2011-11-19T21:54:02+00:00 app[web.1]: 21:54:02,915 INFO ~ Connected to jdbc:postgresql://ec2-107-22-181-224.compute-1.amazonaws.com/nwfkatnlfq 2011-11-19T21:54:04+00:00 app[web.1]: 21:54:04,096 WARN ~ Defaults messsages file missing 2011-11-19T21:54:04+00:00 app[web.1]: 21:54:04,333 INFO ~ [/app/controllers/initialize/InitController.java:167] doJob() :: End of application initialization 2011-11-19T21:54:04+00:00 app[web.1]: 21:54:04,439 INFO ~ Listening for HTTP on port 53918 ... 2011-11-19T21:54:05+00:00 heroku[web.1]: State changed from starting to up 2011-11-19T21:54:18+00:00 app[web.1]: 21:54:18,646 INFO ~ [/app/controllers/support/AOPController.java:22] beforeCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) ENTER action: Application.index (url: GET /) with params: {body=} 2011-11-19T21:54:18+00:00 app[web.1]: 21:54:18,668 INFO ~ [/app/controllers/CommonController.java:41] commonData() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 -- CommonController commonData method executing 476 es 2011-11-19T21:54:18+00:00 app[web.1]: 21:54:18,732 INFO ~ [/app/controllers/support/AOPController.java:22] beforeCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) ENTER action: Application.index (url: GET /) with params: {body=} 2011-11-19T21:54:21+00:00 app[web.1]: 21:54:21,637 INFO ~ [/app/controllers/support/AOPController.java:30] afterCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) END action: Application.index (url: GET /) code: 200 - chunked: false 2011-11-19T21:54:21+00:00 app[web.1]: 21:54:21,638 INFO ~ [/app/controllers/support/AOPController.java:30] afterCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) END action: Application.index (url: GET /) code: 200 - chunked: false 2011-11-19T21:54:22+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/83aea799-df22-42c8-a31d-6a9d466d4cae.cssdyno=web.1 queue=0 wait=0ms service=247ms status=404 bytes=4222 2011-11-19T21:54:22+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/bef7256b-ad43-45fe-9eb3-91bedac59c4b.jsdyno=web.1 queue=0 wait=0ms service=37ms status=404 bytes=4222 2011-11-19T21:54:23+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8f863214-942a-445c-ae4e-7c6dc46441dd.jsdyno=web.1 queue=0 wait=1ms service=36ms status=404 bytes=4222 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,528 INFO ~ [/app/controllers/support/AOPController.java:22] beforeCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) ENTER action: Application.index (url: GET /) with params: {body=} 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,529 INFO ~ [/app/controllers/CommonController.java:41] commonData() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 -- CommonController commonData method executing 476 es 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,548 INFO ~ [/app/controllers/support/AOPController.java:22] beforeCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) ENTER action: Application.index (url: GET /) with params: {body=} 2011-11-19T21:54:24+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/83aea799-df22-42c8-a31d-6a9d466d4cae.cssdyno=web.1 queue=0 wait=0ms service=32ms status=404 bytes=4222 2011-11-19T21:54:24+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/5aaea71e-11ea-4d18-beb3-ffb6c74bfdd9.jsdyno=web.1 queue=0 wait=0ms service=49ms status=404 bytes=4222 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,639 INFO ~ [/app/controllers/support/AOPController.java:30] afterCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) END action: Application.index (url: GET /) code: 200 - chunked: false 2011-11-19T21:54:24+00:00 app[web.1]: 21:54:24,640 INFO ~ [/app/controllers/support/AOPController.java:30] afterCall() :: Session: f1603b41-1b0c-4b83-8c93-25a6c322a4e0 (html) END action: Application.index (url: GET /) code: 200 - chunked: false 2011-11-19T21:54:24+00:00 heroku[router]: GET billeteo.herokuapp.com/public/gs/8f863214-942a-445c-ae4e-7c6dc46441dd.jsdyno=web.1 queue=0 wait=0ms service=32ms status=404 bytes=4222

Still 404. (I won't be able to post more logs for the next 12 hours, sorry about that. And THANKS for your help!)


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-2801142

pvillega commented 12 years ago

Yes, I wonder what's going on. I'll keep tracing, I'll update this once I have more data. Thanks for your quick help!

pvillega commented 12 years ago

Hi,

I couldn't find any solution. I'm sad to say I had to move to Press, which doesn't work using 'in-memory' mode but works using the filesystem. I mention this as maybe you can find the solution checking their source code. Talking about which, it would be great to have the source of the jars from Greenscript (I can not see it) as we may be able to debug these kind of problems.

I have a bug open with Heroku (Request #36314), you may want to contact them to check the issue.

I'll close this by now, if I get more details I'll update!

Thanks for your time!

greenlaw110 commented 12 years ago

The source code of greenscript jar could be found at https://github.com/greenlaw110/greenscript/tree/master/java/core

On Wed, Nov 30, 2011 at 6:57 AM, Pere Villega < reply@reply.github.com

wrote:

Hi,

I couldn't find any solution. I'm sad to say I had to move to Press, which doesn't work using 'in-memory' mode but works using the filesystem. I mention this as maybe you can find the solution checking their source code. Talking about which, it would be great to have the source of the jars from Greenscript (I can not see it) as we may be able to debug these kind of problems.

I have a bug open with Heroku (Request #36314), you may want to contact them to check the issue.

I'll close this by now, if I get more details I'll update!

Thanks for your time!


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-2944871

mgonto commented 12 years ago

This is happening to me as well, but only sometimes!

mgonto commented 12 years ago

It sometimes returns 404 and sometimes not. However, I need less support, is there anyway that I can configure with 1.2.6 to make it work with Heroku?

greenlaw110 commented 12 years ago

Hi someone is working on patching greenscript for cluster support. The the patch is there and he is doing testing. If you would like a try, please go https://github.com/tazmaniax/greenscript for it.

On Sat, Jan 28, 2012 at 9:35 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

It sometimes returns 404 and sometimes not. However, I need less support, is there anyway that I can configure with 1.2.6 to make it work with Heroku?


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3695463

mgonto commented 12 years ago

Was it already merged?

greenlaw110 commented 12 years ago

It's merged into the master already. Not published to play repository yet.

On Sat, Feb 11, 2012 at 8:04 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

Was it already merged?


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914249

mgonto commented 12 years ago

Oh thanks! When will you publish it to play repo? Because that's the best way to link it from my dependencies.

Thx!

On Fri, Feb 10, 2012 at 6:06 PM, Green Luo reply@reply.github.com wrote:

It's merged into the master already. Not published to play repository yet.

On Sat, Feb 11, 2012 at 8:04 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

Was it already merged?


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914249


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914283

greenlaw110 commented 12 years ago

it's published. Please check and close this issue if it works.

On Sat, Feb 11, 2012 at 8:09 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

Oh thanks! When will you publish it to play repo? Because that's the best way to link it from my dependencies.

Thx!

On Fri, Feb 10, 2012 at 6:06 PM, Green Luo reply@reply.github.com wrote:

It's merged into the master already. Not published to play repository yet.

On Sat, Feb 11, 2012 at 8:04 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

Was it already merged?


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914249


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914283


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914320

mgonto commented 12 years ago

thanjs, in which version? ill try.this

Mobile mail. Excuse brevity and typos. On Feb 10, 2012 8:06 PM, "Green Luo" < reply@reply.github.com> wrote:

it's published. Please check and close this issue if it works.

On Sat, Feb 11, 2012 at 8:09 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

Oh thanks! When will you publish it to play repo? Because that's the best way to link it from my dependencies.

Thx!

On Fri, Feb 10, 2012 at 6:06 PM, Green Luo reply@reply.github.com wrote:

It's merged into the master already. Not published to play repository yet.

On Sat, Feb 11, 2012 at 8:04 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

Was it already merged?


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914249


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914283


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914320


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3916131

mgonto commented 12 years ago

I just saw version 1.2.7

Thanks so much!

greenlaw110 commented 12 years ago

1.2.7

On Sat, Feb 11, 2012 at 11:35 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

thanjs, in which version? ill try.this

Mobile mail. Excuse brevity and typos. On Feb 10, 2012 8:06 PM, "Green Luo" < reply@reply.github.com> wrote:

it's published. Please check and close this issue if it works.

On Sat, Feb 11, 2012 at 8:09 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

Oh thanks! When will you publish it to play repo? Because that's the best way to link it from my dependencies.

Thx!

On Fri, Feb 10, 2012 at 6:06 PM, Green Luo reply@reply.github.com wrote:

It's merged into the master already. Not published to play repository yet.

On Sat, Feb 11, 2012 at 8:04 AM, Martin Gontovnikas < reply@reply.github.com

wrote:

Was it already merged?


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914249


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914283


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3914320


Reply to this email directly or view it on GitHub:

https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3916131


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/28#issuecomment-3917105

mgonto commented 12 years ago

Hi

I just tried version 1.2.8 on Heroku and the same things still happens.

It doesn't happen as often as before, but there're still some not found on JS and CSS

Do you need some information to let you check what's going on?

Thanks