Git Product home page Git Product logo

Comments (6)

ruckus avatar ruckus commented on July 1, 2024

Very good point. Thank you for the heads up!

On Mar 20, 2013, at 8:01 AM, woru [email protected] wrote:

Exception handlers set no exit code, which causes problems when migrations are called from bash scripts.

Fix:

Index: ruckusing-migrations/lib/Ruckusing/Exception.php

--- ruckusing-migrations/lib/Ruckusing/Exception.php (revision 6344)
+++ ruckusing-migrations/lib/Ruckusing/Exception.php (working copy)
@@ -79,6 +79,7 @@
public static function errorHandler($code, $message, $file, $line)
{
file_put_contents('php://stderr', "\n" . basename($file) . "({$line}) : {$message}\n\n");

  •    die(1);
    

    }

    /**
    @@ -89,6 +90,7 @@
    public static function exceptionHandler($exception)
    {
    file_put_contents('php://stderr', "\n" . basename($exception->getFile()) . "({$exception->getLine()}) : {$exception->getMessage()}\n\n");

  •    die(1);
    

    }

    }

    Reply to this email directly or view it on GitHub.

from ruckusing-migrations.

salimane avatar salimane commented on July 1, 2024

Please what was this trying to fix exactly ? can we have a way to reproduce this ? This changes introduces #96 .
Thanks

from ruckusing-migrations.

woru avatar woru commented on July 1, 2024
  • env: linux
  • create a migration
  • in the up method add an invalid sql e.g. $this->execute("drop table dssdsdsdsd");
  • create a bash script or run in the command line: php ruckus.php db:migrate && echo "success"

'success' is displayed even though migrations failed

from ruckusing-migrations.

salimane avatar salimane commented on July 1, 2024

Here is a sample code I tested with pure php

salimane at salimane-zenbook  in ~
⚛ cat a.php                 
<?php

echo a;

salimane at salimane-zenbook  in ~
⚛ php a.php                 

Notice: Use of undefined constant a - assumed 'a' in /home/salimane/a.php on line 3

Call Stack:
    0.0226     373800   1. {main}() /home/salimane/a.php:0

PHP Notice:  Use of undefined constant a - assumed 'a' in /home/salimane/a.php on line 3
PHP Stack trace:
PHP   1. {main}() /home/salimane/a.php:0

salimane at salimane-zenbook  in ~
⚛ php a.php && echo "success"

Notice: Use of undefined constant a - assumed 'a' in /home/salimane/a.php on line 3

Call Stack:
    0.0228     373800   1. {main}() /home/salimane/a.php:0

PHP Notice:  Use of undefined constant a - assumed 'a' in /home/salimane/a.php on line 3
PHP Stack trace:
PHP   1. {main}() /home/salimane/a.php:0
success

salimane at salimane-zenbook  in ~

Pure php is also showing that behavior.

Thanks

from ruckusing-migrations.

woru avatar woru commented on July 1, 2024

You example is invalid. Undefined variable results in a notice not error so result code 'success' is acceptable.
Try:
a.php:

from ruckusing-migrations.

salimane avatar salimane commented on July 1, 2024

please could you send a pull request..
Thanks

from ruckusing-migrations.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.