1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-31 03:09:44 +02:00

refactor(docker): remove EndpointProvider from exec [EE-6462] (#10840)

This commit is contained in:
Chaim Lev-Ari 2024-04-11 19:04:58 +03:00 committed by GitHub
parent 76e49ed9a8
commit de473fc10e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 7 deletions

View file

@ -6,11 +6,11 @@ angular.module('portainer.docker').factory('ExecService', [
'use strict';
var service = {};
service.resizeTTY = function (execId, width, height, timeout) {
service.resizeTTY = function (environmentId, execId, width, height, timeout) {
var deferred = $q.defer();
$timeout(function () {
Exec.resize({}, { id: execId, height: height, width: width })
Exec.resize({ environmentId }, { id: execId, height: height, width: width })
.$promise.then(function success(data) {
if (data.message) {
deferred.reject({ msg: 'Unable to resize tty of exec', err: data.message });