Upgrade notify

This commit is contained in:
nolash 2021-03-07 07:45:13 +01:00
parent fd263e7648
commit 1c0732d983
Signed by untrusted user who does not match committer: lash
GPG Key ID: 21D2E7BB88C2A746
8 changed files with 11 additions and 6 deletions

View File

@ -64,7 +64,7 @@ else:
ssl = True
if __name__ == "__main__":
def main():
# TODO: improve url building
url = 'http'
@ -101,3 +101,7 @@ if __name__ == "__main__":
state = response_data[:3]
out = response_data[4:]
print(out)
if __name__ == "__main__":
main()

View File

@ -1,7 +1,7 @@
# standard imports
import semver
version = (0, 3, 0, 'alpha.1')
version = (0, 3, 0, 'alpha.2')
version_object = semver.VersionInfo(
major=version[0],

View File

@ -8,10 +8,10 @@ celery==4.4.7
cffi==1.14.3
chainlib~=0.0.1a15
cic-eth==0.10.0a39
cic-notify==0.3.1
cic-notify~=0.4.0a2
cic-types==0.1.0a8
click==7.1.2
confini==0.3.5
confini~=0.3.6rc3
cryptography==3.2.1
faker==4.17.1
iniconfig==1.1.1

View File

@ -44,4 +44,5 @@ scripts =
[options.entry_points]
console_scripts =
cic-ussd-tasker = cic_ussd.runnable.tasker:main
cic-ussd-tasker = cic_ussd.runnable.tasker:main
cic-ussd-client = cic_ussd.runnable.client:main

View File

@ -74,7 +74,7 @@ new cic.PGPKeyStore(
importMeta,
);
const batchSize = 50;
const batchSize = 16;
const batchDelay = 1000;
const total = parseInt(process.argv[3]);
const workDir = path.join(process.argv[2], 'meta');