Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Owo Sugiana
/
iso8583-web
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 93329a02
authored
Aug 19, 2020
by
Owo Sugiana
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bug fixed web service saat ISO8583 offline
1 parent
b67f0bc0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
3 deletions
CHANGES.txt
README.rst
iso8583-aggregator.ini
iso8583-bank.ini
iso8583_web/scripts/views/__init__.py
CHANGES.txt
View file @
93329a0
0.3.1 2020-08-19
----------------
- Bug fixed web service saat ISO8583 offline
- README.rst memuat diagram antar daemon
0.3 2020-08-09
--------------
- Di forwarder.py Parser.run() usai job.process() bisa mengirim dokumen ISO8583
...
...
README.rst
View file @
93329a0
This diff is collapsed.
Click to expand it.
iso8583-aggregator.ini
View file @
93329a0
...
...
@@ -42,7 +42,7 @@ formatter = generic
format
=
%(asctime)s %(levelname)s %(message)s
[web]
port
=
700
0
port
=
700
1
threads
=
12
[web_linkaja]
...
...
iso8583-bank.ini
View file @
93329a0
...
...
@@ -41,6 +41,18 @@ formatter = generic
[formatter_generic]
format
=
%(asctime)s %(levelname)s %(message)s
[web]
port
=
7000
threads
=
12
[web_teller]
route_path
=
/rpc
host
=
kota_bogor
module
=
iso8583_web.scripts.view.jsonrpc
allowed_ip
=
127.0.0.1
10.8.20.1
[host_agratek]
ip
=
127.0.0.1
port
=
10001
...
...
iso8583_web/scripts/views/__init__.py
View file @
93329a0
...
...
@@ -117,9 +117,9 @@ class View:
continue
found_conn
=
conn
if
not
found_conn
:
raise
Exception
(
self
.
not_found_error
(
name
)
)
raise
self
.
not_found_error
(
name
)
if
not
found_conn
.
running
:
raise
Exception
(
self
.
not_running_error
(
name
)
)
raise
self
.
not_running_error
(
name
)
return
found_conn
def
get_web_conf
(
self
):
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment