Maciej Bąk

Results 14 comments of Maciej Bąk

btw. files = m.get_files() ``` for file in files: file_details = files[file] # print(file_details) file_name = str(file_details['a']['n']) if (file_name.endswith(".mp4")): date_time = time.strftime( ' %Y-%m-%d', time.localtime(file_details['ts'])) new_name = str(file_details['ts']) + "_"...

Good idea! in my current microservices I had to resign from zio-json due to many nested case classes. Its very inconvenient to write 20 decoders/encoders just to operate on 1...

Ive tried this way: > FROM quantumobject/docker-alpine > > USER root > > RUN \ > apk update && \ > apk upgrade && \ > apk add git &&...

@vgkholla nothing

This is from frontend.log > ERROR Connection localhost/127.0.0.1 disconnected (com.github.ambry.network.Selector) > java.net.ConnectException: Connection refused > at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method) > at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717) > at com.github.ambry.network.Transmission.finishConnect(Transmission.java:54) > at com.github.ambry.network.Selector.poll(Selector.java:337) > at com.github.ambry.network.NetworkClient.sendAndPoll(NetworkClient.java:107)...

In docker-compose.yml I have: > ambry: > build: resources/ambry > ports: > - "1174:1174" > - "6667:6667" I have added also to Dockerfile: > EXPOSE 6667 > EXPOSE 1174 >...

but frontend is on same docker container as server, should not be a problem

@vgkholla : > telnet localhost 6667 Trying ::1... Connected to localhost. Escape character is '^]'. Connection closed by foreign host.

Ok Ive managed it: https://github.com/maciejbak85/ambry-docker

@afsalthaj can you share here some more details ?