Skip to content

Commit

Permalink
Bump version to 0.0.31
Browse files Browse the repository at this point in the history
  • Loading branch information
GlassOfWhiskey committed May 29, 2021
1 parent 71b669a commit 8d4f0ac
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion streamflow/config/schemas/v1.0/helm2.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"maxConcurrentConnections": {
"type": "integer",
"description": "Maximum number of concurrent connections to open for a single Kubernetes client",
"default": 10
"default": 4096
},
"namespace": {
"type": "string",
Expand Down
5 changes: 5 additions & 0 deletions streamflow/config/schemas/v1.0/helm3.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@
"type": "string",
"description": "Absolute path of the kubeconfig file to be used"
},
"maxConcurrentConnections": {
"type": "integer",
"description": "Maximum number of concurrent connections to open for a single Kubernetes client",
"default": 4096
},
"namespace": {
"type": "string",
"description": "Namespace to install the release into",
Expand Down
13 changes: 13 additions & 0 deletions streamflow/deployment/connector/queue_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,19 @@ async def get_available_resources(self, service: Text) -> MutableMapping[Text, R
resources[name] = Resource(name, self.hostname)
return resources

async def _copy_remote_to_remote(self,
src: Text,
dst: Text,
resources: MutableSequence[Text],
source_remote: Text,
read_only: bool = False) -> None:
return await super()._copy_remote_to_remote(
src=src,
dst=dst,
resources=[source_remote],
source_remote=source_remote,
read_only=read_only)

async def _run(self,
resource: Text,
command: MutableSequence[Text],
Expand Down
2 changes: 1 addition & 1 deletion streamflow/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.0.30"
VERSION = "0.0.31"

0 comments on commit 8d4f0ac

Please sign in to comment.