We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba6e2c1 commit 6d4bd05Copy full SHA for 6d4bd05
1 file changed
src/Provider/ConfigProvider.php
@@ -67,10 +67,10 @@ public function listener(
67
])]
68
array $options = []
69
): ResponseInterface {
70
- $config = ($options['dataId'] ?? null) . self::WORD_SEPARATOR .
71
- ($options['group'] ?? null) . self::WORD_SEPARATOR .
72
- ($options['contentMD5'] ?? null) . self::WORD_SEPARATOR .
73
- ($options['tenant'] ?? null) . self::LINE_SEPARATOR;
+ $config = ($options['dataId'] ?? null) . self::WORD_SEPARATOR
+ . ($options['group'] ?? null) . self::WORD_SEPARATOR
+ . ($options['contentMD5'] ?? null) . self::WORD_SEPARATOR
+ . ($options['tenant'] ?? null) . self::LINE_SEPARATOR;
74
return $this->request('POST', 'nacos/v1/cs/configs/listener', [
75
RequestOptions::QUERY => [
76
'Listening-Configs' => $config,
0 commit comments