@flowfuse/driver-docker 2.23.0 → 2.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/docker.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/docker.js
CHANGED
|
@@ -798,7 +798,7 @@ module.exports = {
|
|
|
798
798
|
if (this._projects[project.id] === undefined) {
|
|
799
799
|
throw new Error('Cannot get instance resources')
|
|
800
800
|
}
|
|
801
|
-
const url = 'ws://' + project.id + ':
|
|
801
|
+
const url = 'ws://' + project.id + ':2880/flowforge/resources'
|
|
802
802
|
const resourceStream = new WebSocket(url, {})
|
|
803
803
|
|
|
804
804
|
resourceStream.on('message', (data) => {
|