diff options
author | Valery Piashchynski <[email protected]> | 2024-11-21 15:51:19 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2024-11-21 15:51:19 +0100 |
commit | bdcc01a7ff4774bdc0cc57c02236d5aca176b574 (patch) | |
tree | 9b8e0b5163262863fd48fdbed622f5b3618e0f3e /internal/rpc/test | |
parent | bd93d5c005b48a086646145827e302e2fd5d5872 (diff) |
fix: properly parse includes outside the Configuration plugin
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'internal/rpc/test')
-rw-r--r-- | internal/rpc/test/include1/.rr-include.yaml | 5 | ||||
-rw-r--r-- | internal/rpc/test/include1/.rr.yaml | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/internal/rpc/test/include1/.rr-include.yaml b/internal/rpc/test/include1/.rr-include.yaml new file mode 100644 index 00000000..a145a947 --- /dev/null +++ b/internal/rpc/test/include1/.rr-include.yaml @@ -0,0 +1,5 @@ +version: "3" + +rpc: + listen: tcp://127.0.0.1:6010 + diff --git a/internal/rpc/test/include1/.rr.yaml b/internal/rpc/test/include1/.rr.yaml new file mode 100644 index 00000000..66de370b --- /dev/null +++ b/internal/rpc/test/include1/.rr.yaml @@ -0,0 +1,11 @@ +version: "3" + +server: + command: "php app-with-domain-specific-routes.php" + +logs: + level: debug + mode: development + +include: + - test/include1/.rr-include.yaml |