File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ public function getStream(): Stream
98
98
{
99
99
if (!$ this ->stream ) {
100
100
$ this ->stream = $ this ->client ->getApi ()
101
- ->getStream (strtoupper ( " kv_ $ this ->name ") );
101
+ ->getStream (" KV_ $ this ->name " );
102
102
103
103
if (!$ this ->stream ->exists ()) {
104
104
$ this ->getConfiguration ()
@@ -112,7 +112,7 @@ public function getStream(): Stream
112
112
113
113
public function getSubject (string $ key ): string
114
114
{
115
- return strtoupper ( "\$kv .$ this ->name . $ key " ) ;
115
+ return "\$KV .$ this ->name . $ key " ;
116
116
}
117
117
118
118
public function delete ($ key )
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public function configureStream(StreamConfiguration $configuration): self
30
30
->setMaxMessageSize ($ this ->getMaxValueSize ())
31
31
->setMaxMessagesPerSubject ($ this ->getHistory () ?? 1 )
32
32
->setReplicas ($ this ->getReplicas () ?? 1 )
33
- ->setSubjects ([strtoupper ( "\$kv .$ this ->name .* " ) ]);
33
+ ->setSubjects (["\$KV .$ this ->name .* " ]);
34
34
35
35
return $ this ;
36
36
}
You can’t perform that action at this time.
0 commit comments