Julian

Results 218 comments of Julian

any info on this? are there other having the same problem? debug hints? this issue really breaks hiera-eyaml.

@derkgort thank you. your "not pretty" workaround works nicely. @rnelson0 how should this work? adding newlines to an already encrypted string sounds not really helpful. or did you mean to...

@igalic would be great if this can be fixed and not call the workaround as a fix.

i also encountered the problem of having old generated classes which where a pain to manually delete. putting the generated base-classes to cache sounds like a good solution to me.

hmm i see, ### Postgres postgres equivalent for `SHOW TABLES` is ``` SELECT table_name FROM information_schema.tables ``` ``` SELECT tablename FROM pg_catalog.pg_tables ``` the problem with both commands are, that...

> Does a DBAL need database introspection at runtime? my answer would be yes. if i need performance i still can call plain sql. but if i simply want it...

what do you think of having such a feature? i think it's not that difficult to research it for all databases. propel2 maybe? where should the $xxx->getTableNames() be added? to...

not sure if the `Cannot send function call result` call is also from this addon, its not triggered all the time so i assume its not directly connected to this...

my workaround: `Exporter/AnnotationCronExporter.php` ```php ... use Symfony\Component\Console\Command\LazyCommand; ... public function export(array $commands, array $options): CronFormatter { $cron = $this->createCronConfiguration(); foreach ($commands as $command) { if ($command instanceof LazyCommand) { $command...

as workaround you can try using external data provider something like this should work ``` // returns json {"name": "......"} data "external" "exaemple_com" { program = ["bash", "${local.bin_dir}/convert-umlauts.sh", "exämple.com"] }...