Krystian Panek

Results 104 issues of Krystian Panek

Please implement tunneling to be able to pin logs from Vagrant instances. I am forced to use vagrant ssh -c 'tail -f /projects/my-app/logs/error.log' I know about possibility to mount logs...

enhancement
patch welcomed

* Which version of Ansible are you running? ``` ansible 2.10.7 config file = None configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python3.8/site-packages/ansible executable location...

bug
affects-0.3

When having playbook and using Mitogen strategy: ![image](https://user-images.githubusercontent.com/10673561/127489377-64d4191c-9f33-4b3a-b54f-13258f854825.png) and ``` strategy_plugins = ~/.ansible/plugins/strategy:/usr/share/ansible/plugins/strategy:/usr/lib/python3.8/site-packages/ansible_mitogen/plugins/strategy ``` and using Mitogen: https://github.com/pun-ky/mitogen/tree/v0.3.0-776 https://github.com/pun-ky/mitogen/archive/refs/tags/v0.3.0-776.tar.gz and Ansible: ``` Ansible version: ansible 2.10.7 config file = /gat/env/ansible/ansible.cfg...

bug
affects-0.3

currently it is not possible to configure `git { } ` section inside `release {}` because plugin internally is using missing method / groovy specific utilities. as a workaround it...

duplicate
enhancement

``` FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':fork-plugin:createReleaseTag'. > Duplicate tag [4.0.0] - [][fatal: tag '4.0.0' already exists ] * Try: ```...

See https://github.com/gradle/gradle/blob/master/subprojects/core/src/main/java/org/gradle/api/internal/tasks/userinput/UserInputHandler.java Which is accessible via reflection `project.getServices().get(UserInputHandler.class).askQuestion("Enter release version", "1.0.0")` Motivation of change is that when running `sh gradlew release -i` then progress logger is producing mess and sometimes...

Hi! ```kotlin release { versionPropertyFile = "version.properties" afterEvaluate { buildTasks = listOf(":aem:assembly:full:build") } } afterEvaluate { throw GradleException("${project.version}") } ``` ends with ``` * What went wrong: A problem occurred...

question
documentation

My project structure has current version number `x.x.x` spread across whole project. This value is not only saved in `gradle.properties` file but also in README.MD and in some integration tests....

question

![image](https://user-images.githubusercontent.com/10673561/66985246-a6889e80-f0bc-11e9-872a-50859a5db7f6.png) ```kotlin plugins { id("cz.malohlava.visteg") version "1.0.4" } ``` does not work :/

### Expected Behaviour Sequential deployment of packages "ui.config", "ui.apps", "ui.content" installs "core" bundle. Recovering behavior that was available in Archetype 24. The problematic change found: https://github.com/adobe/aem-project-archetype/pull/476/files#diff-25625d5eb7f3c9dc5d84ccc50050962e50bdee02a9645e98d51751dd11c7b2abL69 So that I am...

enhancement