Upgrade notify
This commit is contained in:
parent
fd263e7648
commit
1c0732d983
@ -64,7 +64,7 @@ else:
|
|||||||
ssl = True
|
ssl = True
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
def main():
|
||||||
|
|
||||||
# TODO: improve url building
|
# TODO: improve url building
|
||||||
url = 'http'
|
url = 'http'
|
||||||
@ -101,3 +101,7 @@ if __name__ == "__main__":
|
|||||||
state = response_data[:3]
|
state = response_data[:3]
|
||||||
out = response_data[4:]
|
out = response_data[4:]
|
||||||
print(out)
|
print(out)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
@ -1,7 +1,7 @@
|
|||||||
# standard imports
|
# standard imports
|
||||||
import semver
|
import semver
|
||||||
|
|
||||||
version = (0, 3, 0, 'alpha.1')
|
version = (0, 3, 0, 'alpha.2')
|
||||||
|
|
||||||
version_object = semver.VersionInfo(
|
version_object = semver.VersionInfo(
|
||||||
major=version[0],
|
major=version[0],
|
||||||
|
@ -8,10 +8,10 @@ celery==4.4.7
|
|||||||
cffi==1.14.3
|
cffi==1.14.3
|
||||||
chainlib~=0.0.1a15
|
chainlib~=0.0.1a15
|
||||||
cic-eth==0.10.0a39
|
cic-eth==0.10.0a39
|
||||||
cic-notify==0.3.1
|
cic-notify~=0.4.0a2
|
||||||
cic-types==0.1.0a8
|
cic-types==0.1.0a8
|
||||||
click==7.1.2
|
click==7.1.2
|
||||||
confini==0.3.5
|
confini~=0.3.6rc3
|
||||||
cryptography==3.2.1
|
cryptography==3.2.1
|
||||||
faker==4.17.1
|
faker==4.17.1
|
||||||
iniconfig==1.1.1
|
iniconfig==1.1.1
|
||||||
|
@ -45,3 +45,4 @@ scripts =
|
|||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
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
|
||||||
|
@ -74,7 +74,7 @@ new cic.PGPKeyStore(
|
|||||||
importMeta,
|
importMeta,
|
||||||
);
|
);
|
||||||
|
|
||||||
const batchSize = 50;
|
const batchSize = 16;
|
||||||
const batchDelay = 1000;
|
const batchDelay = 1000;
|
||||||
const total = parseInt(process.argv[3]);
|
const total = parseInt(process.argv[3]);
|
||||||
const workDir = path.join(process.argv[2], 'meta');
|
const workDir = path.join(process.argv[2], 'meta');
|
||||||
|
Loading…
Reference in New Issue
Block a user