Exemple #1
0
def CliBuilder(tdir, tdirWithPoolTxns, tdirWithDomainTxnsUpdated, tconf,
               cliTempLogger):
    return getCliBuilder(tdir,
                         tconf,
                         tdirWithPoolTxns,
                         tdirWithDomainTxnsUpdated,
                         logFileName=cliTempLogger)
Exemple #2
0
def CliBuilder(tdir, tdirWithPoolTxns, tdirWithDomainTxnsUpdated,
               txnPoolNodesLooper, tconf, cliTempLogger):
    return getCliBuilder(tdir,
                         tconf,
                         tdirWithPoolTxns,
                         tdirWithDomainTxnsUpdated,
                         logFileName=cliTempLogger,
                         def_looper=txnPoolNodesLooper)
Exemple #3
0
def CliBuilder(tdir, tdirWithPoolTxns, tdirWithDomainTxns,
               txnPoolNodesLooper, tconf, cliTempLogger):
    return getCliBuilder(
        tdir,
        tconf,
        tdirWithPoolTxns,
        tdirWithDomainTxns,
        logFileName=cliTempLogger,
        def_looper=txnPoolNodesLooper)
Exemple #4
0
def earlMultiNodePools(request, multiPoolNodesCreated, tdir, tdirWithPoolTxns,
                       tdirWithDomainTxnsUpdated, tconf, cliTempLogger):
    oldENVS = tconf.ENVS
    oldPoolTxnFile = tconf.poolTransactionsFile
    oldDomainTxnFile = tconf.domainTransactionsFile

    yield from getCliBuilder(tdir, tconf, tdirWithPoolTxns,
                             tdirWithDomainTxnsUpdated, cliTempLogger,
                             multiPoolNodesCreated)("earl")

    def reset():
        tconf.ENVS = oldENVS
        tconf.poolTransactionsFile = oldPoolTxnFile
        tconf.domainTransactionsFile = oldDomainTxnFile

    request.addfinalizer(reset)
Exemple #5
0
def earlMultiNodePools(request, multiPoolNodesCreated, tdir, tdirWithPoolTxns,
                       tdirWithDomainTxnsUpdated, tconf, cliTempLogger):
    yield from getCliBuilder(tdir, tconf, tdirWithPoolTxns,
                             tdirWithDomainTxnsUpdated, cliTempLogger,
                             multiPoolNodesCreated)("earl")
Exemple #6
0
def cliForMultiNodePools(request, multiPoolNodesCreated, tdir,
                         tdirWithPoolTxns, tdirWithDomainTxns, tconf,
                         cliTempLogger):
    yield from getCliBuilder(tdir, tconf, tdirWithPoolTxns, tdirWithDomainTxns,
                             cliTempLogger, multiPoolNodesCreated)("susan")
Exemple #7
0
def earlMultiNodePools(request, multiPoolNodesCreated, tdir,
                       tdirWithPoolTxns, tdirWithDomainTxns, tconf,
                       cliTempLogger):
    yield from getCliBuilder(tdir, tconf,
                             tdirWithPoolTxns, tdirWithDomainTxns,
                             cliTempLogger, multiPoolNodesCreated)("earl")
Exemple #8
0
def cliForMultiNodePools(request, multiPoolNodesCreated, tdir,
                         tdirWithPoolTxns, tdirWithDomainTxnsUpdated, tconf,
                         cliTempLogger):
    yield from getCliBuilder(tdir, tconf,
                             tdirWithPoolTxns, tdirWithDomainTxnsUpdated,
                             cliTempLogger, multiPoolNodesCreated)("susan")