File tree Expand file tree Collapse file tree 2 files changed +5
-13
lines changed
lib/internal/Magento/Framework/Amqp Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -38,15 +38,7 @@ public function create(FactoryOptions $options): AbstractConnection
38
38
$ parameters ['ssl_options ' ] = $ options ->getSslOptions () !== null
39
39
? $ options ->getSslOptions ()
40
40
: ['verify_peer ' => true ];
41
- return ObjectManager::getInstance ()->create ($ connectionType , $ parameters );
42
41
}
43
- // need to revert the changes in scope of this ticket - AC-11673
44
- return new AMQPStreamConnection (
45
- $ parameters ['host ' ],
46
- $ parameters ['port ' ],
47
- $ parameters ['user ' ],
48
- $ parameters ['password ' ],
49
- $ parameters ['vhost ' ]
50
- );
42
+ return ObjectManager::getInstance ()->create ($ connectionType , $ parameters );
51
43
}
52
44
}
Original file line number Diff line number Diff line change @@ -121,10 +121,10 @@ public static function connectionDataProvider()
121
121
'ssl_enabled ' => true ,
122
122
'connection_class ' => AMQPSSLConnection::class,
123
123
],
124
- // [ // Need to revert in scope of this ticket - AC-11673
125
- // 'ssl_enabled' => false,
126
- // 'connection_class' => AMQPStreamConnection::class,
127
- // ],
124
+ [
125
+ 'ssl_enabled ' => false ,
126
+ 'connection_class ' => AMQPStreamConnection::class,
127
+ ],
128
128
];
129
129
}
130
130
You can’t perform that action at this time.
0 commit comments