Questions tagged [multipath]

21 questions
5
votes
3 answers

network request failed react native on https image upload Android

I am trying to upload image through fetch api but getting Network request failed error on real device android. I also tried lots of lots of suggestion from google but nothing worked for me. my dependencies are: "react-native": "0.62.0", "axios":…
3
votes
3 answers

Multipath inheritance with only one base virtual

As far as i know, virtual ensures that only one copy of the properties of base class is inherited to the derived class. And in a multiple inheritance the constructor of all base is called first then the constructor of derived is called. In the…
1
vote
1 answer

How does iOS Multipath Networking works under Developer Mode?

For iOS 16, there are Multipath Networking options in Developer Options menu like these; None Handover Interactive Aggregate I wonder if these options can help with poor home/office wifi connections. Any ideas how does it work, what are the…
peynir
  • 58
  • 1
  • 11
1
vote
1 answer

Python 3.10 - module 'socket' has no attribute 'IPPROTO_MPTCP'

According to the documentation, the "IPPROTO_MPTCP" protocol has been added to Python3.10, but when I create a socket like this, socket.socket(socket.AF_INET, socket.SOCK_STREAM, socket.IPPROTO_MPTCP) I get this error module 'socket' has no…
Harsh Ranjan
  • 11
  • 2
  • 1
1
vote
3 answers

How to delete lines before and after matching pattern

i have a file like below. I want to search pattern ABC_DATA as a variable and after match, i want to delete from first previous "multipath" line to the line including "}" character. "}" could be after or in the same line with ABC_DATA. SAMPLE…
solmyr
  • 29
  • 3
1
vote
3 answers

Finding largest value in array using recursion

I've been studying to ' Data Abstraction and Problem Solving with C++ ' book at recently, however i did stuck at some point. I'm at recursion chapter, and i faced with a problem which is ' Finding largest value in an array'. As you know i have to…
Rutkay Karabulak
  • 107
  • 1
  • 2
  • 12
1
vote
1 answer

Firebase Multi path atomic update with child values?

I am succesfully updating my user's profile picture on their profile and on all of their reviews posted with this function: export const storeUserProfileImage = (url) => { const { currentUser } = firebase.auth(); …
1
vote
1 answer

oVirt Multipathing MPIO Fibre Channel how to?

I have a question regarding oVirt and multipathing. I have a cluster with 4 hosts and a storage system (Dell EMC) connected via fibre channel. At the moment I have a SAN Switch between the hosts and the storage system, but I want to attach the hosts…
0
votes
1 answer

Error Multipath Kubernetes Ingress, Cannot GET /

I'm trying to learn about multipath in Kubernetes Ingress. First of all, I'm using minikube for this tutorial, I created a simple Web API using node js. NodeJS Code In this nodeJS, I created a simple Web API, with routing and…
emriti
  • 3
  • 2
0
votes
1 answer

Oracle Linux 8 - multipath -ll does not show the FS

I am trying to configure a multipath for Oracle Linux 8. I am following the instructions here: https://docs.oracle.com/en/operating-systems/oracle-linux/8/stordev/multipathing.html#about-device-multipath But even if i define my volume in the…
0
votes
0 answers

Algorithm to detect best path in a multigraph

essentially I have a multigraph where each edge has its own identity and the weight of each edge is dependent upon some starting input. I have created a dijkstra-based search algorithm that can detect the shortest path from start to destination,…
0
votes
1 answer

create a multi-route mininet topology

I am working on mininet and am trying to create a topology to allow multiple paths to exist between any two hosts. In particular, I am working with the following topology: class SimpleTopo(Topo): def build(self): h1 = self.addHost('h1') …
0
votes
1 answer

Check if dm multipath paths had previous errors like powerpath

We recently switches storage vendors and are now bound to DM Multipath for multipath management. Does DM Multipath have a feature to see if any of the paths had a previous error on one of the paths. In PowerPath you could see if there where any…
Martijn
  • 3
  • 1
0
votes
1 answer

SCTP : transmitting with both interfaces at the same time

On my machine, I have 2 interfaces connected to another machine with 2 interfaces as well. I want to use both interfaces at the same time to transfer data. From SCTP view, each machine is an endpoint. So, I used a one-to-one socket. On the server…
HealthyDev
  • 25
  • 3
0
votes
1 answer

updateChildValue writes data

Having following issue: I denormalised my data structure in my Realtime Firebase Database. As a consequence of that I need to update the username in all other "posts" (in this case recipes) as well as in recipes with different authors. To do that,…
1
2