We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8924c5 commit b86a5d9Copy full SHA for b86a5d9
src/RestClient.php
@@ -44,7 +44,7 @@ public function getPool(string $name): Pool
44
45
public function createDataset(string $volume, string $name, int $size, ?string $comment = null, string $type = Dataset::TYPE_VOLUME): Dataset
46
{
47
- $path = urlencode("{$volume}/{$name}");
+ $path = "{$volume}/{$name}";
48
$response = $this->client->post('pool/dataset', [
49
'name' => $path,
50
'type' => Dataset::TYPE_VOLUME,
0 commit comments